From 8b4052235247c2a6f7f1ff8a4cb81d81123c238c Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 20:31:19 +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 e5b8c87..760b825 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 22 Jun 2026 20:31:22 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 74 +++++++++++++++------------------------ 1 file changed, 29 insertions(+), 45 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 760b825..1530d06 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": "Home", - "href": "/" + "name": "Home", "href": "/" }, { - "name": "Collections", - "href": "/collections" + "name": "Collections", "href": "/collections" }, { - "name": "About", - "href": "/about" + "name": "About", "href": "/about" }, { - "name": "Gallery", - "href": "/gallery" + "name": "Gallery", "href": "/gallery" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" } ]; @@ -42,47 +35,38 @@ export default function Layout() { + logo="Luxe Bridal Atelier" + logoImageSrc="http://img.b2bpic.net/free-vector/hand-drawn-wedding-logo-design_23-2150233585.jpg" + ctaButton={{ + text: "Book Appointment", href: "/booking"}} + navItems={navItems} + />
+ ]} + /> ); -- 2.49.1