From b914dce04d2f889c1fa46c73a01902f3a033d606 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 02:47:06 +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 557b27e..bc50504 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -105,6 +105,7 @@ export default function Layout() { }, ]} copyright="© 2024 Burger Republic. All rights reserved." + links={[]} /> -- 2.49.1 From b079acd4435004b99aed26672f503840a35d5528 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 22 Jun 2026 02:47:09 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 66 +++++++++++---------------------------- 1 file changed, 19 insertions(+), 47 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index bc50504..9096c1f 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": "#products" + "name": "Menu", "href": "#products" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Features", - "href": "#features" + "name": "Features", "href": "#features" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" } ]; @@ -44,9 +37,7 @@ export default function Layout() {
@@ -57,50 +48,31 @@ export default function Layout() { brand="Burger Republic" columns={[ { - title: "Branches", - items: [ + title: "Branches", items: [ { - label: "65 Al Dwidar", - href: "#", - }, + label: "65 Al Dwidar", href: "#"}, { - label: "Makram Ebeid", - href: "#", - }, + label: "Makram Ebeid", href: "#"}, { - label: "Tivoli Dome", - href: "#", - }, + label: "Tivoli Dome", href: "#"}, ], }, { - title: "Company", - items: [ + title: "Company", items: [ { - label: "About Us", - href: "#", - }, + label: "About Us", href: "#"}, { - label: "Careers", - href: "#", - }, + label: "Careers", href: "#"}, { - label: "Contact", - href: "#", - }, + label: "Contact", 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: "#"}, ], }, ]} -- 2.49.1