From 19376cfbf1cff144a8b693c977f6c6c4b8af6918 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 17 Jun 2026 21:08:47 +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 d078b05..78e361e 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Wed, 17 Jun 2026 21:08:50 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 61 ++++++++++++--------------------------- 1 file changed, 18 insertions(+), 43 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 78e361e..e1af223 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": "Services", - "href": "#features" + "name": "Services", "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,46 +49,30 @@ export default function Layout() { brand="One Stop Motorsports, LLC" columns={[ { - title: "Shop Information", - items: [ + title: "Shop Information", items: [ { - label: "7219 W 162nd Terrace", - href: "#", - }, + label: "7219 W 162nd Terrace", href: "#"}, { - label: "Stilwell, KS 66085", - href: "#", - }, + label: "Stilwell, KS 66085", href: "#"}, { - label: "(913) 735-7303", - href: "tel:9137357303", - }, + label: "(913) 735-7303", href: "tel:9137357303"}, ], }, { - title: "Social & Media", - items: [ + title: "Social & Media", items: [ { - label: "Facebook", - href: "https://facebook.com", - }, + label: "Facebook", href: "https://facebook.com"}, { - label: "Instagram", - href: "https://instagram.com", - }, + label: "Instagram", href: "https://instagram.com"}, ], }, ]} copyright="© 2024 One Stop Motorsports, LLC. 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