From dc81a0d6b6b72050e075380c6f9a18263247b12e Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 24 Jun 2026 22:56:41 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index fabc78b..85a4507 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Wed, 24 Jun 2026 22:56:44 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 89 +++++++++++++-------------------------- 1 file changed, 29 insertions(+), 60 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 85a4507..4618a2d 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,82 +7,51 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "About Us", - "href": "#about" - }, - { - "name": "Services", - "href": "#services" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Features Comp", - "href": "#features-comp" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Testimonials", - "href": "#testimonials" - } -]; + { name: "Home", href: "#hero" }, + { name: "About Us", href: "#about" }, + { name: "Services", href: "#services" }, + { name: "Contact", href: "#contact" }, + { name: "Features Comp", href: "#features-comp" }, + { name: "Metrics", href: "#metrics" }, + { name: "Testimonials", href: "#testimonials" } + ]; return ( + logo="Wallach Iron & Metal" + logoImageSrc="http://img.b2bpic.net/free-vector/creative-text-effect-editable-modern-creative-text-style_314614-3360.jpg" + ctaButton={{ + text: "Call Now", href: "tel:314-389-1129"}} + navItems={navItems} + />
+ ] + } + copyright="Copyright © 2016 Wallach Iron & Metal Co., Inc." + links={[]} + />
); -- 2.49.1