From 09db82291c412a7075e1a260dcf858e65addf647 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 15:38:59 +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 0e3b46c..6a5a3ba 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 21 Jun 2026 15:39:02 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 65 ++++++++++++--------------------------- 1 file changed, 19 insertions(+), 46 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 6a5a3ba..afcacc0 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": "Services", - "href": "#services" + "name": "Services", "href": "#services" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "FAQ", - "href": "#faq" + "name": "FAQ", "href": "#faq" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Specialized", - "href": "#specialized" + "name": "Specialized", "href": "#specialized" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Team", - "href": "#team" + "name": "Team", "href": "#team" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,50 +49,32 @@ export default function Layout() { brand="Timis Motors" columns={[ { - title: "Services", - items: [ + title: "Services", items: [ { - label: "Diagnostics", - href: "#", - }, + label: "Diagnostics", href: "#"}, { - label: "Bodywork", - href: "#", - }, + label: "Bodywork", href: "#"}, { - label: "Maintenance", - href: "#", - }, + label: "Maintenance", href: "#"}, ], }, { - title: "About Us", - items: [ + title: "About Us", items: [ { - label: "Our Story", - href: "#about", - }, + label: "Our Story", href: "#about"}, { - label: "Team", - href: "#team", - }, + label: "Team", href: "#team"}, { - label: "FAQ", - href: "#faq", - }, + label: "FAQ", href: "#faq"}, ], }, ]} copyright="© 2024 Timis Motors. 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