From 81cee294ff70edbcdd78df9c9c81d4efff093b56 Mon Sep 17 00:00:00 2001 From: Celeste Robert <celeste@lydra.fr> Date: Wed, 30 Apr 2025 12:22:44 +0200 Subject: [PATCH] feat: link to cvtheque --- src/components/TeamComponent/index.js | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/components/TeamComponent/index.js b/src/components/TeamComponent/index.js index d00686f..37d44e3 100644 --- a/src/components/TeamComponent/index.js +++ b/src/components/TeamComponent/index.js @@ -91,7 +91,9 @@ function Feature({ img, title, subtitle, description, url, link }) { <p><b>{subtitle}</b></p> - <p>{description}</p> + <p>{description} + <br/> + </p> {link && <Link className="button button--sm button--secondary" href={link}> {subtitle} </Link>} </div> @@ -102,13 +104,22 @@ function Feature({ img, title, subtitle, description, url, link }) { export function Team() { return ( <section> - <h2 className="text--center margin-top--lg"> Notre Équipe </h2> + <div> + <h2 className="text--center margin-top--lg"> Notre Équipe </h2> + <h3 className="margin--auto text--center" style={{fontSize: '1.3em'}}> Découvrez nos <Link href="https://cloud.lydra.fr/s/CVtheque"> dossiers de compétences </Link> ðŸ“</h3> + </div> + <div className={styles.features + " team"}> <div className="container"> + <div> {FeatureList.map((props, idx) => ( <Feature key={idx} {...props} /> ))} + + </div> </div> + <h3 className="margin--auto text--center" style={{fontSize: '1.3em'}}> Découvrez nos <Link href="https://cloud.lydra.fr/s/CVtheque"> dossiers de compétences </Link> ðŸ“</h3> + </div> </section> ); -- GitLab