diff --git a/src/components/TeamComponent/index.js b/src/components/TeamComponent/index.js
index d00686f5e65576303909a17daaf23ea04d881739..32714988faa09686fcc9a9a4eec7c1f127d3fdf1 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>