generated from WildCodeSchool/create-js-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #135 from WildCodeSchool/user_update
User update
- Loading branch information
Showing
19 changed files
with
234 additions
and
317 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import React from "react"; | ||
import { MDBFooter } from "mdb-react-ui-kit"; | ||
|
||
export default function Footer() { | ||
return ( | ||
<MDBFooter bgColor="light" className="text-center text-lg-left"> | ||
<div | ||
className="text-center p-3" | ||
style={{ backgroundColor: "#c91f61", color: "white" }} | ||
> | ||
© {new Date().getFullYear()} Copyright:{" "} | ||
<a className="text-light" href="https://mdbootstrap.com/"> | ||
Externatic.com | ||
</a> | ||
</div> | ||
</MDBFooter> | ||
); | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
.big-homeCard-container { | ||
padding: 60px 0; | ||
} | ||
.big-homeCard-container span { | ||
color: var(--second-color); | ||
font-weight: 600; | ||
font-style: italic; | ||
} | ||
|
||
.big-homeCard-container h1 { | ||
padding-bottom: 20px; | ||
} | ||
|
||
.homeCard-container { | ||
display: flex; | ||
justify-content: center; | ||
flex-direction: column; | ||
color: black; | ||
} | ||
|
||
.card-one, | ||
.card-two, | ||
.card-three { | ||
padding: 30px 15px; | ||
margin: 20px 0; | ||
border-radius: 5px; | ||
box-shadow: 0 4px 8px rgba(85, 85, 85, 0.2); | ||
background-color: var(--background-input); | ||
} | ||
|
||
.homeCard-container i { | ||
font-size: 30px; | ||
padding-bottom: 15px; | ||
color: var(--main-color); | ||
} | ||
|
||
@media screen and (min-width: 768px) { | ||
.homeCard-container { | ||
display: flex; | ||
justify-content: center; | ||
flex-direction: row; | ||
gap: 50px; | ||
} | ||
.card-one, | ||
.card-two, | ||
.card-three { | ||
margin: 30px 0; | ||
width: 30%; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
import { useGlobalContext } from "../../contexts/GlobalContext"; | ||
import "./HomeCard.css"; | ||
|
||
function HomeCard() { | ||
const { user } = useGlobalContext(); | ||
return ( | ||
<div className="big-homeCard-container"> | ||
{user ? ( | ||
<h1> | ||
{user.firstname}, Bienvenue chez <span>Externatic !</span> | ||
</h1> | ||
) : ( | ||
<h1> | ||
Bienvenue chez <span>Externatic !</span> | ||
</h1> | ||
)} | ||
<div className="homeCard-container"> | ||
<div className="card-one"> | ||
<i className="fa-regular fa-address-book" /> | ||
<h2>Inscrivez-vous!</h2> | ||
<p> | ||
En vous inscrivant, initiez votre retour à l'emploi avec notre | ||
plateforme ! Explorez des opportunités, acquérez des compétences, | ||
créez des liens professionnels enrichissants. Notre engagement est | ||
de vous fournir les outils nécessaires pour surmonter les défis et | ||
atteindre vos objectifs professionnels, faisant ainsi de votre | ||
avenir une promesse de réussite.{" "} | ||
</p> | ||
</div> | ||
<div className="card-two"> | ||
<i className="fa-regular fa-file" /> | ||
<h2>Remplissez votre CV</h2> | ||
<p> | ||
Vous allez pouvoir ajouter vos différentes formations et expériences | ||
qui valoriseront davantage votre profil auprès des recruteurs. Cette | ||
vitrine renforcera votre présence en ligne, augmentant vos chances | ||
de captiver l'attention des employeurs. Exploitez cette opportunité | ||
pour renforcez votre position sur le marché du travail et donnez un | ||
nouvel élan à votre carrière.{" "} | ||
</p> | ||
</div> | ||
<div className="card-three"> | ||
<i className="fa-regular fa-eye" /> | ||
<h2>Consultez les offres</h2> | ||
<p> | ||
Avec votre CV completé, notre système sélectionne minutieusement des | ||
offres alignées sur vos compétences, maximisant ainsi vos chances | ||
d'entretiens réussis. Simplifiant votre parcours professionnel, nous | ||
vous dirigeons vers des opportunités reflétant au mieux vos | ||
aptitudes, facilitant la recherche d'emploi et favorisant des | ||
entrevues significatives.{" "} | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default HomeCard; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.