From 1699868f07c157ccc6ce4a1952bbe43fd9e8802d Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 07:32:45 +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 4f4ea7b..1fe2fd9 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 22 Jun 2026 07:32:48 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 121 ++++++++++++++------------------------ 1 file changed, 45 insertions(+), 76 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 1fe2fd9..7dd99e7 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Menu", - "href": "#menu" + "name": "Menu", "href": "#menu" }, { - "name": "Gallery", - "href": "#gallery" + "name": "Gallery", "href": "#gallery" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Social Proof", - "href": "#social-proof" + "name": "Social Proof", "href": "#social-proof" } ]; @@ -42,82 +35,58 @@ export default function Layout() { + logo="Cova Specialty Coffee" + logoImageSrc="http://img.b2bpic.net/free-photo/latte-art-coffee-cup-spoon_9975-135795.jpg" + ctaButton={{ + text: "Order Online", href: "/order"}} + navItems={navItems} + />
+ label: "Terms", href: "#"}, + ]} + imageSrc="http://img.b2bpic.net/free-photo/latte-art-coffee-cup-spoon_9975-135795.jpg" + /> ); -- 2.49.1