From c80e74c9e37b46a7bcf06dcbfc275a4a15ef5f3f Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 01:31:56 +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 16ef617..01ce1c2 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 22 Jun 2026 01:32:00 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 127 ++++++++++++++------------------------ 1 file changed, 47 insertions(+), 80 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 01ce1c2..ec7d135 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": "Gallery", - "href": "#gallery" + "name": "Gallery", "href": "#gallery" }, { - "name": "About Us", - "href": "#about" + "name": "About Us", "href": "#about" }, { - "name": "Contact Us", - "href": "#contact" + "name": "Contact Us", "href": "#contact" }, { - "name": "Service Areas", - "href": "#areas" + "name": "Service Areas", "href": "#areas" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" } ]; @@ -42,86 +35,60 @@ export default function Layout() { + logo="Robby's Roofing" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=t48nfj" + ctaButton={{ + text: "Get Free Estimate", href: "#contact"}} + navItems={navItems} + />
+ label: "Terms of Service", href: "#"}, + ]} + imageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=t48nfj" + /> ); -- 2.49.1