From 4782025255b66862f6974ef64312f8dd636fd111 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 20:28:23 +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 2431379..10d776e 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 14 Jun 2026 20:28:26 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 125 +++++++++++++------------------------- 1 file changed, 42 insertions(+), 83 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 10d776e..ba83d2b 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,109 +7,68 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "Products", - "href": "#products" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Testimonials", - "href": "#testimonials" - }, - { - "name": "Social Proof", - "href": "#social-proof" - } -]; + { name: "Home", href: "#hero" }, + { name: "Products", href: "#products" }, + { name: "About", href: "#about" }, + { name: "Contact", href: "#contact" }, + { name: "Features", href: "#features" }, + { name: "Testimonials", href: "#testimonials" }, + { name: "Social Proof", href: "#social-proof" } + ]; return ( + logo="Jacob's Sport Caps" + logoImageSrc="http://img.b2bpic.net/free-vector/soccer-logo-template_23-2149588679.jpg" + ctaButton={{ + text: "Call Now", href: "tel:832-404-6764"}} + navItems={navItems} + />
+ label: "Terms of Service", href: "#"}, + ]} + imageSrc="http://img.b2bpic.net/free-vector/soccer-logo-template_23-2149588679.jpg" + />
); -- 2.49.1