Merge remote-tracking branch 'origin/dev/guerby' into dev/cedric

This commit is contained in:
cdricms
2025-01-13 14:56:31 +01:00
5 changed files with 27 additions and 12 deletions

View File

@@ -1,7 +1,7 @@
"use server";
import Features, { FeatureItem } from "@/components/features";
import Gallery6 from "@/components/gallery";
import Gallery from "@/components/gallery";
import Hero from "@/components/hero";
import Testimonial from "@/components/testimonial";
@@ -9,7 +9,7 @@ export default async function Home() {
return (
<main>
<Hero />
<div className="flex flex-col">
<div className="flex flex-col p-12">
<Features
title="DÉVELOPPEMENT DU SYSTÈME"
description="Latosa Escrima Concepts est un système martial dynamique et en constante évolution. Ce système repose sur une approche logique, qui progresse au fil du développement des compétences techniques des pratiquants."
@@ -112,10 +112,10 @@ export default async function Home() {
</ul>
</FeatureItem>
</Features>
<Gallery />
<Gallery />
<Testimonial />
</div>
<Gallery6 />
<Gallery6 />
<Testimonial />
</main>
);
}