From 234dea9f90c546f2e118c484b427860f79b715ac Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 13 Jun 2026 19:53:25 +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 c302995..3af9ab3 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sat, 13 Jun 2026 19:53:29 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 68 ++++++++++++--------------------------- 1 file changed, 20 insertions(+), 48 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 3af9ab3..03cc535 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": "Fleet", - "href": "#fleet" + "name": "Fleet", "href": "#fleet" }, { - "name": "Services", - "href": "#services" + "name": "Services", "href": "#services" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,55 +49,36 @@ export default function Layout() { brand="Golden Luo Rent a Car" columns={[ { - title: "Location", - items: [ + title: "Location", items: [ { - label: "Dubai, UAE", - href: "#", - }, + label: "Dubai, UAE", href: "#"}, { - label: "Get Directions", - href: "#", - }, + label: "Get Directions", href: "#"}, ], }, { - title: "Support", - items: [ + title: "Support", items: [ { - label: "Mon-Thu: 10AM-11PM", - href: "#", - }, + label: "Mon-Thu: 10AM-11PM", href: "#"}, { - label: "Friday: Walk-in Only", - href: "#", - }, + label: "Friday: Walk-in Only", href: "#"}, ], }, { - title: "Social", - items: [ + title: "Social", items: [ { - label: "Instagram", - href: "https://www.instagram.com/goldenluorentacar", - }, + label: "Instagram", href: "https://www.instagram.com/goldenluorentacar"}, { - label: "WhatsApp", - href: "https://wa.me/971505301204", - }, + label: "WhatsApp", href: "https://wa.me/971505301204"}, ], }, ]} copyright="© 2024 Golden Luo Rent a Car. 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