From 916923117a4ee7ee1e38c931f023efc001c3e03b Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 17:23:13 +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 568981e..b41eaf2 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 15 Jun 2026 17:23:16 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 104 ++++++++++++-------------------------- 1 file changed, 31 insertions(+), 73 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index b41eaf2..4d14360 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,95 +7,53 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Shop", - "href": "#products" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Testimonials", - "href": "#testimonials" - } -]; + { "name": "Shop", "href": "#products" }, + { "name": "About", "href": "#about" }, + { "name": "Contact", "href": "#contact" }, + { "name": "Hero", "href": "#hero" }, + { "name": "Features", "href": "#features" }, + { "name": "Metrics", "href": "#metrics" }, + { "name": "Testimonials", "href": "#testimonials" } + ]; return ( + logo="FreshMart" + logoImageSrc="http://img.b2bpic.net/free-vector/farm-business-card-template-design_742173-21715.jpg" + ctaButton={{ + text: "Order Now", href: "#contact"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 FreshMart. All rights reserved." + links={[ + { label: "Privacy", href: "#" }, + { label: "Terms", href: "#" }, + ]} + />
);