From 821e2e7ba22c3e8832ceed861b3769823d823f67 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 16 Jun 2026 07:33:26 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index ccd707a..caad8b7 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -42,6 +42,7 @@ export default function Layout() { Date: Tue, 16 Jun 2026 07:33:29 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 125 ++++++++++++-------------------------- 1 file changed, 38 insertions(+), 87 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index caad8b7..d22a163 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,111 +7,62 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "About", - "href": "#about" - }, - { - "name": "Menu", - "href": "#menu" - }, - { - "name": "Reviews", - "href": "#reviews" - }, - { - "name": "Location", - "href": "#location" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Gallery", - "href": "#gallery" - } -]; + { name: "About", href: "#about" }, + { name: "Menu", href: "#menu" }, + { name: "Reviews", href: "#reviews" }, + { name: "Location", href: "#location" }, + { name: "Hero", href: "#hero" }, + { name: "Features", href: "#features" }, + { name: "Gallery", href: "#gallery" } + ]; return ( + logo="Soba Izakaya Saikai" + logoImageSrc="http://img.b2bpic.net/free-photo/woman-practicing-japanese-handwriting-indoors_23-2149124170.jpg" + ctaButton={{ + text: "Reserve", href: "#reservation"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 Soba Izakaya Saikai. All rights reserved." + links={[ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" } + ]} + />
); -- 2.49.1