diff --git a/src/components/TeamComponent/index.js b/src/components/TeamComponent/index.js index d00686f5e65576303909a17daaf23ea04d881739..37d44e3db4112a048c2b745d53d8890b58d8238b 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> );