From 761f781569eaef1b7dd72cf0b557cc4f6d640e4b Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 03:30:16 +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 6b460ae..e41171b 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:30:19 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 136 ++++++++++---------------------------- 1 file changed, 36 insertions(+), 100 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index e41171b..7f50ca3 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,124 +7,60 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "/" - }, - { - "name": "About", - "href": "/about" - }, - { - "name": "Services", - "href": "#services" - }, - { - "name": "Portfolio", - "href": "/portfolio" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Why Us", - "href": "#why-us" - } -]; + { "name": "Home", "href": "/" }, + { "name": "About", "href": "/about" }, + { "name": "Services", "href": "/services" }, + { "name": "Portfolio", "href": "/portfolio" }, + { "name": "Contact", "href": "/contact" } + ]; return ( + logo="Pimentel Pools" + logoImageSrc="http://img.b2bpic.net/free-vector/modern-architecture-business-card-template_742173-33037.jpg" + ctaButton={{ + text: "Get a Quote", href: "/contact"}} + navItems={navItems} />
+ ]} + copyright="© 2024 Pimentel Pools and Restoration. All rights reserved." + links={[ + { label: "Terms", href: "/terms" }, + { label: "Privacy", href: "/privacy" }, + ]} + />
); -- 2.49.1