From a9134505d1d81987fcfe1a0cfe1bd9cc4daf2951 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 14:22:12 +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 cf0ac74..d9e0101 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 21 Jun 2026 14:22:16 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 80 +++++++++++---------------------------- 1 file changed, 23 insertions(+), 57 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index d9e0101..b4248b8 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": "#hero" + "name": "Home", "href": "#hero" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Menu", - "href": "#menu" + "name": "Menu", "href": "#menu" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "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,67 +49,42 @@ export default function Layout() { brand="Bhetghat Restaurant" columns={[ { - title: "Menu", - items: [ + title: "Menu", items: [ { - label: "Thali Sets", - href: "#menu", - }, + label: "Thali Sets", href: "#menu"}, { - label: "Momo Specials", - href: "#menu", - }, + label: "Momo Specials", href: "#menu"}, { - label: "Beverages", - href: "#menu", - }, + label: "Beverages", href: "#menu"}, ], }, { - title: "Location", - items: [ + title: "Location", items: [ { - label: "Chaukitol -2", - href: "#", - }, + label: "Chaukitol -2", href: "#"}, { - label: "Hetauda 44107", - href: "#", - }, + label: "Hetauda 44107", href: "#"}, { - label: "Nepal", - href: "#", - }, + label: "Nepal", href: "#"}, ], }, { - title: "Connect", - items: [ + title: "Connect", items: [ { - label: "Facebook", - href: "#", - }, + label: "Facebook", href: "#"}, { - label: "Instagram", - href: "#", - }, + label: "Instagram", href: "#"}, { - label: "TripAdvisor", - href: "#", - }, + label: "TripAdvisor", href: "#"}, ], }, ]} copyright="© 2024 Bhetghat Restaurant. All rights reserved." links={[ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ]} /> -- 2.49.1