Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit e62b3e8d authored by Christophe Chaudier's avatar Christophe Chaudier :rocket:
Browse files

Merge branch '114-ajouter-le-lien-cv-dans-la-page-team' into 'main'

Resolve "ajouter le lien CV dans la page team"

Closes #114

See merge request !106
parents a524d7c2 82d591bb
No related branches found
No related tags found
1 merge request!106Resolve "ajouter le lien CV dans la page team"
Pipeline #63278 passed
...@@ -91,7 +91,9 @@ function Feature({ img, title, subtitle, description, url, link }) { ...@@ -91,7 +91,9 @@ function Feature({ img, title, subtitle, description, url, link }) {
<p><b>{subtitle}</b></p> <p><b>{subtitle}</b></p>
<p>{description}</p> <p>{description}
<br/>
</p>
{link && <Link className="button button--sm button--secondary" href={link}> {subtitle} </Link>} {link && <Link className="button button--sm button--secondary" href={link}> {subtitle} </Link>}
</div> </div>
...@@ -99,15 +101,31 @@ function Feature({ img, title, subtitle, description, url, link }) { ...@@ -99,15 +101,31 @@ function Feature({ img, title, subtitle, description, url, link }) {
); );
} }
const Resume = () => {
return (
<Link className="button button--md button--success margin-bottom--lg margin-horiz--auto" to="https://cloud.lydra.fr/s/CVtheque"> Découvrez nos compétences 📁</Link>
);
}
export function Team() { export function Team() {
return ( return (
<section> <section>
<h2 className="text--center margin-top--lg"> Notre Équipe </h2> <div className="container text--center">
<h2 className="margin-top--lg"> Notre Équipe </h2>
<Resume />
</div>
<div className={styles.features + " team"}> <div className={styles.features + " team"}>
<div className="container"> <div className="container">
<div>
{FeatureList.map((props, idx) => ( {FeatureList.map((props, idx) => (
<Feature key={idx} {...props} /> <Feature key={idx} {...props} />
))} ))}
</div>
<div className="container text--center">
<Resume />
</div>
</div> </div>
</div> </div>
</section> </section>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment