From 12f3e4789b1e88f71130d195227d3a98adf08dc7 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 17:54:46 +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 a7ca6b3..9b7acea 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 21 Jun 2026 17:54:49 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 72 ++++++++++++--------------------------- 1 file changed, 21 insertions(+), 51 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 9b7acea..288bacf 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": "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" }, { - "name": "Features", - "href": "#features" + "name": "Features", "href": "#features" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,46 +49,29 @@ export default function Layout() { brand="The Keller Tavern" columns={[ { - title: "Visit", - items: [ + title: "Visit", items: [ { - label: "123 Main St, Keller, TX", - href: "#", - }, + label: "123 Main St, Keller, TX", href: "#"}, { - label: "(555) 123-4567", - href: "tel:+15551234567", - }, + label: "(555) 123-4567", href: "tel:+15551234567"}, ], }, { - title: "Connect", - items: [ + title: "Connect", items: [ { - label: "Instagram", - href: "#", - }, + label: "Instagram", href: "#"}, { - label: "Facebook", - href: "#", - }, + label: "Facebook", href: "#"}, { - label: "Twitter", - href: "#", - }, + label: "Twitter", href: "#"}, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ], }, ]} @@ -105,13 +79,9 @@ export default function Layout() { imageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=2rj4uu" links={[ { - label: "Terms", - href: "#", - }, + label: "Terms", href: "#"}, { - label: "Privacy", - href: "#", - }, + label: "Privacy", href: "#"}, ]} /> -- 2.49.1