From 39f63133b0b3debc255a61500e07c939b4e23b0e Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 13 Jun 2026 20:20:57 +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 2567a4a..e553e24 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sat, 13 Jun 2026 20:21:00 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 100 +++++++++++--------------------------- 1 file changed, 29 insertions(+), 71 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index e553e24..57a7990 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,93 +7,51 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Menu", - "href": "#features" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Testimonials", - "href": "#testimonials" - }, - { - "name": "Faq", - "href": "#faq" - } -]; + { name: "Home", href: "#hero" }, + { name: "About", href: "#about" }, + { name: "Menu", href: "#features" }, + { name: "Contact", href: "#contact" }, + { name: "Metrics", href: "#metrics" }, + { name: "Testimonials", href: "#testimonials" }, + { name: "Faq", href: "#faq" } + ]; return ( + logo="Cafe Artisan" + logoImageSrc="http://img.b2bpic.net/free-vector/set-vintage-coffee-emblems_1284-46478.jpg" + ctaButton={{ + text: "Book Table", href: "#contact"}} + navItems={navItems} + />
+ ]} + leftText="© 2024 Cafe Artisan. All rights reserved." + rightText="Crafted with love and coffee." + />
); -- 2.49.1