From 68f214e36e2852388050bd1f320f0df3e5d4de25 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 17:36:34 +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 86d67e0..586c7bf 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 15 Jun 2026 17:36:37 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 86 +++++++++++++++------------------------ 1 file changed, 33 insertions(+), 53 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 586c7bf..590c510 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": "Menu", - "href": "#menu" + "name": "Menu", "href": "#menu" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Reviews", - "href": "#reviews" + "name": "Reviews", "href": "#reviews" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" } ]; @@ -42,56 +35,43 @@ export default function Layout() { + logo="Flying Pig" + logoImageSrc="http://img.b2bpic.net/free-vector/barbecue-menu-graphic-elements_23-2147495136.jpg" + ctaButton={{ + text: "Book Us", href: "#contact"}} + navItems={navItems} + />
+ label: "Privacy Policy", href: "#"}, + ]} + /> ); -- 2.49.1