From f2c34b175692b6ee50d5c3646740afc8b0d14202 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 14:22:37 +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 4b59660..f005516 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 22 Jun 2026 14:22:39 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 40 +++++++++++---------------------------- 1 file changed, 11 insertions(+), 29 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index f005516..ed2582e 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,32 +8,22 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Accueil", - "href": "/" + "name": "Accueil", "href": "/" }, { - "name": "Le Cabinet", - "href": "/about" + "name": "Le Cabinet", "href": "/about" }, { - "name": "Services", - "href": "/services" + "name": "Services", "href": "/services" }, { - "name": "Expertise", - "href": "/expertise" + "name": "Expertise", "href": "/expertise" }, { - "name": "Témoignages", - "href": "/testimonials" + "name": "Témoignages", "href": "/testimonials" }, { - "name": "Contact", - "href": "/contact" - }, - { - "name": "Hero", - "href": "#hero" + "name": "Contact", "href": "/contact" } ]; @@ -43,11 +33,9 @@ export default function Layout() {
@@ -60,21 +48,15 @@ export default function Layout() { { items: [ { - label: "Mentions Légales", - href: "/mentions", - }, + label: "Mentions Légales", href: "/mentions"}, { - label: "RGPD", - href: "/rgpd", - }, + label: "RGPD", href: "/rgpd"}, ], }, { items: [ { - label: "Prendre RDV", - href: "/contact", - }, + label: "Prendre RDV", href: "/contact"}, ], }, ]} -- 2.49.1