Skip to content

Commit

Permalink
css
Browse files Browse the repository at this point in the history
  • Loading branch information
Hepsox committed Dec 14, 2023
1 parent ed8bc0e commit faff4ea
Show file tree
Hide file tree
Showing 7 changed files with 56 additions and 7 deletions.
2 changes: 1 addition & 1 deletion frontend/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,6 @@ body {
.container-page.with-rounded-border {
border-top-left-radius: 50px;
border-top-right-radius: 50px;
padding-top: 0px;
padding-top: 70px;
margin-top: -170px;
}
10 changes: 10 additions & 0 deletions frontend/src/main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ import History from "./pages/Historique/History";
import JobPosteDelail from "./pages/JobPosteDetail/JobPosteDetail";
import Home from "./pages/Home/Home";
import Favoris from "./pages/Favoris/Favoris";
import ResultatAnnonces from "./pages/ResultatAnnonce/ResultatsAnnonce";
import Search from "./pages/Search/Search";

const router = createBrowserRouter([
{
Expand All @@ -39,6 +41,14 @@ const router = createBrowserRouter([
path: "/job",
element: <JobPosteDelail />,
},
{
path: "/results",
element: <ResultatAnnonces />,
},
{
path: "/search",
element: <Search />,
},
{
path: "/edit-profil",
element: <UserProfileModel />,
Expand Down
1 change: 0 additions & 1 deletion frontend/src/pages/Experience/AddExperience.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ function AddExperience() {
return (
<>
<HeaderCourt />

<div className="container-page with-rounded-border">
<h1>Ajouter une expérience</h1>

Expand Down
1 change: 0 additions & 1 deletion frontend/src/pages/JobPosteDetail/JobPosteDetail.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ function JobPosteDetail() {
return (
<>
<HeaderCourt />

<div className="container-page with-rounded-border">
<div>
<div className="offre-date-container">
Expand Down
2 changes: 0 additions & 2 deletions frontend/src/pages/JobPosteDetail/job-poste-detail.css
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,8 @@
.offre-date-container {
padding-left: 15px;
padding-right: 40px;
padding-top: 50px;

display: flex;
flex-direction: column;
justify-content: center;
margin-top: 50px;
}
17 changes: 15 additions & 2 deletions frontend/src/pages/ResultatAnnonce/ResultatsAnnonce.jsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
export default function ResultatsAnnonce() {
return <div>ResultatsAnnonce</div>;
import CardOffre from "../../components/CardModel/CardOffre";
import HeaderLongTitreSsTitre from "../../components/Headers/HeaderLongTitreSsTitre";

function ResultatAnnonces() {
return (
<>
<HeaderLongTitreSsTitre />
<div className="container-page">
<CardOffre />
<CardOffre />
<CardOffre />
</div>
</>
);
}
export default ResultatAnnonces;
30 changes: 30 additions & 0 deletions frontend/src/pages/Search/Search.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import HeaderCourt from "../../components/Headers/HeaderCourt";
import ButtonMaxi from "../../components/Boutons/ButtonMaxi";
import Input from "../../components/Inputs/Input";
import CheckboxCondition from "../../components/Inputs/CheckboxCondition";

function Search() {
return (
<div>
<HeaderCourt />
<div className="container-page with-rounded-border">
<h1>Ajouter une expérience</h1>

<div className="container-input">
<Input titleInput="Intitulé du poste *" holderText="Chef de projet" />
<Input titleInput="Entreprise *" holderText="Inoxia" />

<div className="container-checkbox-experience">
<CheckboxCondition textCondition="J'occupe ce poste actuellement" />
<CheckboxCondition textCondition="J'occupe ce poste actuellement" />
<CheckboxCondition textCondition="J'occupe ce poste actuellement" />
<CheckboxCondition textCondition="J'occupe ce poste actuellement" />
</div>

<ButtonMaxi textBtn="Ajouter l'expérience" />
</div>
</div>
</div>
);
}
export default Search;

0 comments on commit faff4ea

Please sign in to comment.