From 6c4b456dd5eb51a2a778070942bf9d73c7a7f2ee Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 16 Jun 2026 02:01:10 +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 e22223a..c610a56 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Tue, 16 Jun 2026 02:01:14 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 76 ++++++++++++--------------------------- 1 file changed, 22 insertions(+), 54 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index c610a56..28261af 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": "Shop", - "href": "#products" + "name": "Shop", "href": "#products" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Services", - "href": "#services" + "name": "Services", "href": "#services" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,63 +49,40 @@ export default function Layout() { brand="Broadway Freeway Store" columns={[ { - title: "Store", - items: [ + title: "Store", items: [ { - label: "About Us", - href: "#about", - }, + label: "About Us", href: "#about"}, { - label: "Services", - href: "#services", - }, + label: "Services", href: "#services"}, { - label: "Contact", - href: "#contact", - }, + label: "Contact", href: "#contact"}, ], }, { - title: "Shop", - items: [ + title: "Shop", items: [ { - label: "Browse Catalog", - href: "#products", - }, + label: "Browse Catalog", href: "#products"}, { - label: "Wholesale Plans", - href: "#pricing", - }, + label: "Wholesale Plans", href: "#pricing"}, { - label: "Fleet Services", - href: "#pricing", - }, + label: "Fleet Services", href: "#pricing"}, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Use", - href: "#", - }, + label: "Terms of Use", href: "#"}, ], }, ]} copyright="© 2024 Broadway Freeway Store. All rights reserved." links={[ { - label: "Twitter", - href: "#", - }, + label: "Twitter", href: "#"}, { - label: "Instagram", - href: "#", - }, + label: "Instagram", href: "#"}, ]} imageSrc="http://img.b2bpic.net/free-vector/gradient-shop-local-logo-design_23-2149613174.jpg" /> -- 2.49.1