From 4ebffdee6eacb4a82ed5e1deb55ef488f03595f3 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 10 Jun 2026 22:59:03 +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 4464308..5cb08fc 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Wed, 10 Jun 2026 22:59:17 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 63 +++++++++++---------------------------- 1 file changed, 18 insertions(+), 45 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 5cb08fc..e3b23b1 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": "#home" + "name": "Home", "href": "#home" }, { - "name": "Services", - "href": "#services" + "name": "Services", "href": "#services" }, { - "name": "Portfolio", - "href": "#portfolio" + "name": "Portfolio", "href": "#portfolio" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Team", - "href": "#team" + "name": "Team", "href": "#team" }, { - "name": "FAQ", - "href": "#faq" + "name": "FAQ", "href": "#faq" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -60,49 +51,31 @@ export default function Layout() { { items: [ { - label: "Services", - href: "#services", - }, + label: "Services", href: "#services"}, { - label: "Portfolio", - href: "#portfolio", - }, + label: "Portfolio", href: "#portfolio"}, { - label: "Testimonials", - href: "#testimonials", - }, + label: "Testimonials", href: "#testimonials"}, ], }, { items: [ { - label: "About Us", - href: "#about", - }, + label: "About Us", href: "#about"}, { - label: "Our Team", - href: "#team", - }, + label: "Our Team", href: "#team"}, { - label: "FAQ", - href: "#faq", - }, + label: "FAQ", href: "#faq"}, ], }, { items: [ { - label: "Get a Quote", - href: "#contact", - }, + label: "Get a Quote", href: "#contact"}, { - label: "Email Us", - href: "mailto:info@gardnerlandscaping.com", - }, + label: "Email Us", href: "mailto:info@gardnerlandscaping.com"}, { - label: "Call Us", - href: "tel:+1234567890", - }, + label: "Call Us", href: "tel:+1234567890"}, ], }, ]}