From fe1f08a326f7fc94e8f6b7b16355b678f2cb7137 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 17:49:43 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 532647d..a925f18 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 22 Jun 2026 17:49:46 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 63 +++++++++++---------------------------- 1 file changed, 18 insertions(+), 45 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index a925f18..7cbfd8f 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Nos Cafés", - "href": "#products" + "name": "Nos Cafés", "href": "#products" }, { - "name": "Savoir-faire", - "href": "#philosophy" + "name": "Savoir-faire", "href": "#philosophy" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Features", - "href": "#features" + "name": "Features", "href": "#features" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -60,49 +51,31 @@ export default function Layout() { { items: [ { - label: "La Maison", - href: "#", - }, + label: "La Maison", href: "#"}, { - label: "Nos Guides Cafés", - href: "#", - }, + label: "Nos Guides Cafés", href: "#"}, { - label: "Plus d'informations", - href: "#", - }, + label: "Plus d'informations", href: "#"}, ], }, { items: [ { - label: "Paiement sécurisé", - href: "#", - }, + label: "Paiement sécurisé", href: "#"}, { - label: "Livraison offerte", - href: "#", - }, + label: "Livraison offerte", href: "#"}, { - label: "Service Client", - href: "#", - }, + label: "Service Client", href: "#"}, ], }, { items: [ { - label: "Mentions Légales", - href: "#", - }, + label: "Mentions Légales", href: "#"}, { - label: "Données personnelles", - href: "#", - }, + label: "Données personnelles", href: "#"}, { - label: "CGV", - href: "#", - }, + label: "CGV", href: "#"}, ], }, ]} -- 2.49.1