From 7e7748373530171984b18684cc5bb9a43e4bad4a Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 6 Jun 2026 14:43:36 +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 2047475..fd0d5f2 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -47,6 +47,7 @@ export default function Layout() { Date: Sat, 6 Jun 2026 14:43:47 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 82 +++++++++++---------------------------- 1 file changed, 23 insertions(+), 59 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index fd0d5f2..79cb39e 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,36 +8,28 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Home", - "href": "#hero" + "name": "Home", "href": "#hero" }, { - "name": "About Us", - "href": "#about" + "name": "About Us", "href": "#about" }, { - "name": "Services", - "href": "#services" + "name": "Services", "href": "#services" }, { - "name": "Projects", - "href": "#projects" + "name": "Projects", "href": "#projects" }, { - "name": "Team", - "href": "#team" + "name": "Team", "href": "#team" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "FAQ", - "href": "#faq" + "name": "FAQ", "href": "#faq" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" } ]; @@ -47,11 +39,9 @@ export default function Layout() {
@@ -64,69 +54,43 @@ export default function Layout() { { items: [ { - label: "Lawn Care", - href: "#services", - }, + label: "Lawn Care", href: "#services"}, { - label: "Garden Design", - href: "#services", - }, + label: "Garden Design", href: "#services"}, { - label: "Tree & Shrub", - href: "#services", - }, + label: "Tree & Shrub", href: "#services"}, { - label: "Irrigation", - href: "#services", - }, + label: "Irrigation", href: "#services"}, ], }, { items: [ { - label: "About Us", - href: "#about", - }, + label: "About Us", href: "#about"}, { - label: "Our Team", - href: "#team", - }, + label: "Our Team", href: "#team"}, { - label: "Projects", - href: "#projects", - }, + label: "Projects", href: "#projects"}, { - label: "Careers", - href: "#", - }, + label: "Careers", href: "#"}, ], }, { items: [ { - label: "Contact", - href: "#contact", - }, + label: "Contact", href: "#contact"}, { - label: "Get a Quote", - href: "mailto:info@greenscapepros.com", - }, + label: "Get a Quote", href: "mailto:info@greenscapepros.com"}, { - label: "Blog", - href: "#", - }, + label: "Blog", href: "#"}, ], }, { items: [ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ], }, ]} -- 2.49.1