From d7012b22308eb9ea1e0ffa76771c8d0cedc81c97 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 03:12:07 +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 b172414..5fdba60 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 14 Jun 2026 03:12:10 +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 5fdba60..fc1435a 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": "/" + "name": "Home", "href": "/" }, { - "name": "Services", - "href": "/services" + "name": "Services", "href": "/services" }, { - "name": "About", - "href": "/about" + "name": "About", "href": "/about" }, { - "name": "Reviews", - "href": "/reviews" + "name": "Reviews", "href": "/reviews" }, { - "name": "Contact", - "href": "/contact" + "name": "Contact", "href": "/contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,50 +49,32 @@ export default function Layout() { brand="First Aid Plumbing Specialist INC" columns={[ { - title: "Quick Links", - items: [ + title: "Quick Links", items: [ { - label: "Home", - href: "/", - }, + label: "Home", href: "/"}, { - label: "Services", - href: "/services", - }, + label: "Services", href: "/services"}, { - label: "About", - href: "/about", - }, + label: "About", href: "/about"}, { - label: "Contact", - href: "/contact", - }, + label: "Contact", href: "/contact"}, ], }, { - title: "Contact Us", - items: [ + title: "Contact Us", items: [ { - label: "832-279-3065", - href: "tel:+18322793065", - }, + label: "832-279-3065", href: "tel:+18322793065"}, { - label: "9847 Sageroyal Ln, Houston", - href: "#", - }, + label: "9847 Sageroyal Ln, Houston", href: "#"}, ], }, ]} copyright="© 2024 First Aid Plumbing Specialist INC. 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