change div to section into section files
This commit is contained in:
@@ -2,7 +2,7 @@ import { FeatureColumn } from '@/components/ui/FeatureColumn';
|
|||||||
|
|
||||||
export default function FeatureSection() {
|
export default function FeatureSection() {
|
||||||
return (
|
return (
|
||||||
<div className="w-full h-180 flex flex-row justify-center items-center">
|
<section className="w-full h-180 flex flex-row justify-center items-center">
|
||||||
<FeatureColumn
|
<FeatureColumn
|
||||||
imagePath={"/icons/brain.svg"}
|
imagePath={"/icons/brain.svg"}
|
||||||
title={"Plus qu'un simple exécutant"}
|
title={"Plus qu'un simple exécutant"}
|
||||||
@@ -18,6 +18,6 @@ export default function FeatureSection() {
|
|||||||
title={"L'utilisateur au centre"}
|
title={"L'utilisateur au centre"}
|
||||||
text={"Le code parfait n'est rien si le produit ne répond pas à un besoin. Je place l'expérience utilisateur et la fonctionnalité au cœur de mes développements."}
|
text={"Le code parfait n'est rien si le produit ne répond pas à un besoin. Je place l'expérience utilisateur et la fonctionnalité au cœur de mes développements."}
|
||||||
/>
|
/>
|
||||||
</div>
|
</section>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -2,7 +2,7 @@ import { ProjectCard } from "../ui/ProjectCard";
|
|||||||
|
|
||||||
export default function WorksSection() {
|
export default function WorksSection() {
|
||||||
return (
|
return (
|
||||||
<div className="w-full flex flex-col items-start justify-start">
|
<section className="w-full flex flex-col items-start justify-start">
|
||||||
<h2 className="text-9xl font-serif text-brand-brown">Travaux</h2>
|
<h2 className="text-9xl font-serif text-brand-brown">Travaux</h2>
|
||||||
|
|
||||||
<ProjectCard
|
<ProjectCard
|
||||||
@@ -42,6 +42,6 @@ export default function WorksSection() {
|
|||||||
projectPageLink={""}
|
projectPageLink={""}
|
||||||
isTheLast={true}
|
isTheLast={true}
|
||||||
/>
|
/>
|
||||||
</div>
|
</section>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user