From a133fb7d9a394c979236080b8c27c3a00fea976e Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 25 Jun 2026 08:35:01 +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 f17dcca..63a1de7 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Thu, 25 Jun 2026 08:35:04 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 114 ++++++++++++++------------------------ 1 file changed, 42 insertions(+), 72 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 63a1de7..dc3f9ec 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": "Home", - "href": "#hero" + "name": "Home", "href": "#hero" }, { - "name": "Menu", - "href": "#products" + "name": "Menu", "href": "#products" }, { - "name": "Our Story", - "href": "#about" + "name": "Our Story", "href": "#about" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Process", - "href": "#process" + "name": "Process", "href": "#process" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" } ]; @@ -42,78 +35,55 @@ export default function Layout() { + logo="Crimson Bakery" + logoImageSrc="https://images.pexels.com/photos/30954120/pexels-photo-30954120.jpeg?auto=compress&cs=tinysrgb&h=650&w=940" + ctaButton={{ + text: "Order Online", href: "#contact"}} + navItems={navItems} />
+ label: "Terms of Service", href: "#"}, + ]} + /> ); -- 2.49.1