From 8b3fbca9dfe29889958956a9163f6d5ac10ae933 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 13 Jun 2026 19:07:55 +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 5ad739b..3db0d37 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sat, 13 Jun 2026 19:07:58 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 100 ++++++++++++++------------------------ 1 file changed, 37 insertions(+), 63 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 3db0d37..4cfdcf4 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": "Overview", - "href": "#hero" + "name": "Overview", "href": "#hero" }, { - "name": "Menu", - "href": "#menu" + "name": "Menu", "href": "#menu" }, { - "name": "Reviews", - "href": "#testimonials" + "name": "Reviews", "href": "#testimonials" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Features", - "href": "#features" + "name": "Features", "href": "#features" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" } ]; @@ -42,67 +35,48 @@ export default function Layout() { + logo="Gloria's" + logoImageSrc="http://img.b2bpic.net/free-vector/gradient-labels-collection-mexico-independence-celebration_23-2149552840.jpg" + ctaButton={{ + text: "Order Now", href: "#"}} + navItems={navItems} />
+ ]} + leftText="© 2024 Gloria's Cocina Mexicana. All rights reserved." + rightText="Designed with flavor." + /> ); -- 2.49.1