From 137aece56c52f2ee4e496ded3216849b6dc71881 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 17 Jun 2026 00:44:42 +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 fa04bcd..3529807 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -44,6 +44,7 @@ export default function Layout() { Date: Wed, 17 Jun 2026 00:44:45 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 61 +++++++++++++++------------------------ 1 file changed, 23 insertions(+), 38 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 3529807..1c23d27 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -9,32 +9,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Services", - "href": "#services" + "name": "Services", "href": "#services" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Showcase", - "href": "#showcase" + "name": "Showcase", "href": "#showcase" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" } ]; @@ -43,36 +36,28 @@ export default function Layout() { + logo="Cantina Roofing" + logoImageSrc="http://img.b2bpic.net/free-vector/home-kids-logo-design_474888-1980.jpg" + ctaButton={{ + text: "Get Quote", href: "#contact"}} + navItems={navItems} />
+ brand="Cantina Roofing" + copyright="© 2024 Cantina Roofing. All rights reserved." + socialLinks={[ + { + icon: "Instagram", href: "#"}, + { + icon: "Facebook", href: "#"}, + { + icon: "Twitter", href: "#"}, + ]} + /> ); -- 2.49.1