From 04258d62518eda5111940a27411c0f3c80883336 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 23:31:35 +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 c26bcd3..d8800c8 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 15 Jun 2026 23:31:38 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 95 +++++++++++++++------------------------ 1 file changed, 35 insertions(+), 60 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index d8800c8..48cd59d 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": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Menu", - "href": "#features" + "name": "Menu", "href": "#features" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" } ]; @@ -42,64 +35,46 @@ export default function Layout() { + logo="Top O’Th’ Hill" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=d072xa" + ctaButton={{ + text: "Reserve Now", href: "#contact"}} + navItems={navItems} />
+ label: "Terms of Service", href: "#"}, + ]} + /> ); -- 2.49.1