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

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • lydra/www/lydra.fr
1 result
Show changes
Commits on Source (3)
image: node:16.14.2-slim
image: node:22.15.0-slim
include:
- template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml'
......
[tools]
node = "18.12"
node = "22.15"
v18.12.1
22.15.1
......@@ -28,7 +28,7 @@
"eslint-plugin-react": "^7.32.1"
},
"engines": {
"node": "18.12.1"
"node": "22.15.1"
}
},
"node_modules/@algolia/autocomplete-core": {
......
......@@ -47,6 +47,6 @@
]
},
"engines": {
"node": "18.12.1"
"node": "22.15.1"
}
}
......@@ -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>
......