From d5734769eb574a8b242fe4cb5911b3d7fc800899 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 12:40:17 +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 d1652d0..0ed9aa6 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 15 Jun 2026 12:40:20 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 53 ++++++++++++--------------------------- 1 file changed, 16 insertions(+), 37 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 0ed9aa6..6fe99a0 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": "Specials", - "href": "#specials" + "name": "Specials", "href": "#specials" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "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": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,29 +49,19 @@ export default function Layout() { brand="The Signature Menu" columns={[ { - title: "Menu", - items: [ + title: "Menu", items: [ { - label: "Appetizers", - href: "#", - }, + label: "Appetizers", href: "#"}, { - label: "Main Course", - href: "#", - }, + label: "Main Course", 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: "#"}, ], }, ]} @@ -88,9 +69,7 @@ export default function Layout() { imageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=pyxmcy" links={[ { - label: "Accessibility", - href: "#", - }, + label: "Accessibility", href: "#"}, ]} /> -- 2.49.1