From c685032261036dc53d53aae11707ce6f555fc689 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 19 Jun 2026 18:28:49 +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 5172682..16058ea 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Fri, 19 Jun 2026 18:28:52 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 119 +++++++++++--------------------------- 1 file changed, 35 insertions(+), 84 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 16058ea..4cf32a1 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,108 +7,59 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "About", - "href": "#about" - }, - { - "name": "Services", - "href": "#features" - }, - { - "name": "Products", - "href": "#products" - }, - { - "name": "FAQ", - "href": "#faq" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Testimonials", - "href": "#testimonials" - } -]; + { "name": "About", "href": "#about" }, + { "name": "Services", "href": "#features" }, + { "name": "Products", "href": "#products" }, + { "name": "FAQ", "href": "#faq" }, + { "name": "Hero", "href": "#hero" }, + { "name": "Metrics", "href": "#metrics" }, + { "name": "Testimonials", "href": "#testimonials" } + ]; return ( + logo="EcoSolar" + logoImageSrc="http://img.b2bpic.net/free-photo/recycling-symbol-beside-green-batteries_23-2148115677.jpg" + ctaButton={{ + text: "Get Audit", href: "#contact"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 EcoSolar Inc. All rights reserved." + links={[ + { label: "Twitter", href: "#" }, + { label: "Facebook", href: "#" }, + ]} + />
); -- 2.49.1