From 031088ec5b97fb190d047323b45ed69a5d95e863 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 16 Jun 2026 13:05:19 +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 b877c84..9842886 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Tue, 16 Jun 2026 13:05:22 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 60 +++++++++++++-------------------------- 1 file changed, 19 insertions(+), 41 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 9842886..39343f3 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": "About", - "href": "#features" + "name": "About", "href": "#features" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "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,42 +49,29 @@ export default function Layout() { brand="Juices4Life" columns={[ { - title: "Explore", - items: [ + title: "Explore", items: [ { - label: "Menu", - href: "#products", - }, + label: "Menu", href: "#products"}, { - label: "About", - href: "#features", - }, + label: "About", href: "#features"}, ], }, { - title: "Support", - items: [ + title: "Support", items: [ { - label: "Contact", - href: "#contact", - }, + label: "Contact", href: "#contact"}, { - label: "FAQs", - href: "#faq", - }, + label: "FAQs", href: "#faq"}, ], }, - ]} + ] + } copyright="© 2024 Juices4Life Birmingham. 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