From 82d591bb3184ecec641300acbb1f7856f74427e4 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 | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/src/components/TeamComponent/index.js b/src/components/TeamComponent/index.js index d00686f..3271498 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> @@ -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() { return ( <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="container"> + <div> {FeatureList.map((props, idx) => ( <Feature key={idx} {...props} /> ))} + + </div> + <div className="container text--center"> + <Resume /> + </div> </div> </div> </section> -- GitLab