From 0af7eb5c6205bbb233d421f8a60f0706ac5c98ef Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 13 Jun 2026 22:59:54 +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 85a3e15..da65e1a 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sat, 13 Jun 2026 22:59:57 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 109 +++++++++++--------------------------- 1 file changed, 32 insertions(+), 77 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index da65e1a..cf92586 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,99 +7,54 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Services", - "href": "#services" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Reviews", - "href": "#reviews" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Gallery", - "href": "#gallery" - }, - { - "name": "Metrics", - "href": "#metrics" - } -]; + { name: "Services", href: "#services" }, + { name: "About", href: "#about" }, + { name: "Reviews", href: "#reviews" }, + { name: "Contact", href: "#contact" }, + { name: "Hero", href: "#hero" }, + { name: "Gallery", href: "#gallery" }, + { name: "Metrics", href: "#metrics" } + ]; return ( + logo="Castro Valley Roofing" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=dfxxlx" + ctaButton={{ + text: "Get Quote", href: "#contact"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 Castro Valley Roofing. All rights reserved." + links={[ + { label: "Twitter", href: "#" }, + { label: "LinkedIn", href: "#" }, + ]} + />
); -- 2.49.1