From 780ba0b91b0aa6d660bcaff348e7791cb13c4cba Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 16 Jun 2026 10:19:55 +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 2553166..c803d6e 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Tue, 16 Jun 2026 10:20:01 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 68 ++++++++++++--------------------------- 1 file changed, 20 insertions(+), 48 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index c803d6e..b4cfc0d 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": "Menu", - "href": "#menu" + "name": "Menu", "href": "#menu" }, { - "name": "Ambience", - "href": "#ambience" + "name": "Ambience", "href": "#ambience" }, { - "name": "Contact", - "href": "#footer" + "name": "Contact", "href": "#footer" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,55 +49,36 @@ export default function Layout() { brand="SUKHSAGAR" columns={[ { - title: "Timing", - items: [ + title: "Timing", items: [ { - label: "Open Daily: 11 AM - 11 PM", - href: "#", - }, + label: "Open Daily: 11 AM - 11 PM", href: "#"}, { - label: "Short wait times on weekends.", - href: "#", - }, + label: "Short wait times on weekends.", href: "#"}, ], }, { - title: "Location", - items: [ + title: "Location", items: [ { - label: "Ahilyanagar, Maharashtra", - href: "https://maps.google.com", - }, + label: "Ahilyanagar, Maharashtra", href: "https://maps.google.com"}, { - label: "Kothi - Yash Palace Rd", - href: "#", - }, + label: "Kothi - Yash Palace Rd", href: "#"}, ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { - label: "095617 45045", - href: "tel:09561745045", - }, + label: "095617 45045", href: "tel:09561745045"}, { - label: "Directions", - href: "https://maps.google.com", - }, + label: "Directions", href: "https://maps.google.com"}, ], }, ]} copyright="© 2024 Sukhsagar 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