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

This commit is contained in:
cdricms
2025-01-13 13:49:28 +01:00
9 changed files with 601 additions and 6 deletions

View File

@@ -0,0 +1,7 @@
export default function Gallery() {
return (
<>
</>
)
}

View File

@@ -8,6 +8,7 @@ body {
@layer base {
:root {
/* Define your custom padding value */
--background: 0 0% 100%;
--foreground: 0 0% 3.9%;
--card: 0 0% 100%;

View File

@@ -1,6 +1,7 @@
"use server";
import Features, { FeatureItem } from "@/components/features";
import Gallery6 from "@/components/gallery";
import Hero from "@/components/hero";
export default async function Home() {
@@ -106,6 +107,8 @@ export default async function Home() {
</ul>
</FeatureItem>
</Features>
<Gallery6 />
<Gallery6 />
</main>
);
}