From 715ab44905c8cd8d7bcf2406c7425bea56e90720 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 19 Jun 2026 20:22:36 +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 9deeb31..e1e17f4 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Fri, 19 Jun 2026 20:22:38 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 138 +++++++++++--------------------------- 1 file changed, 40 insertions(+), 98 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index e1e17f4..e8aad1f 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,122 +7,64 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#" - }, - { - "name": "Products", - "href": "#products" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Support", - "href": "#faq" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Metrics", - "href": "#metrics" - } -]; + { name: "Home", href: "/" }, + { name: "Products", href: "#products" }, + { name: "Features", href: "#features" }, + { name: "Support", href: "#faq" }, + { name: "Hero", href: "#hero" }, + { name: "About", href: "#about" }, + { name: "Metrics", href: "#metrics" } + ]; return ( + logo="Supply Vendor" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=co8od8" + ctaButton={{ + text: "Shop Now", href: "#products"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 Supply Vendor Inc. All rights reserved." + links={[ + { label: "Twitter", href: "#" }, + { label: "Instagram", href: "#" }, + ]} + imageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=co8od8" + />
); -} +} \ No newline at end of file -- 2.49.1