From 3f0b82c1626868aa070297e051fc5ec2a9eca0b5 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 16 Jun 2026 08:20:58 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 02df674..96e7bb3 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -89,6 +89,10 @@ export default function Layout() { }, ]} copyright="© 2024 Soba Izakaya Saikai. All rights reserved." + links={[ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" } + ]} /> -- 2.49.1 From 9d2e22553f82200051ebdd3a83d064e448c52418 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 16 Jun 2026 08:21:01 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 106 +++++++++++++------------------------- 1 file changed, 35 insertions(+), 71 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 96e7bb3..e10a05c 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,93 +7,57 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Menu", - "href": "#menu" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Testimonials", - "href": "#testimonials" - } -]; + { name: "Home", href: "#" }, + { name: "Features", href: "#features" }, + { name: "Menu", href: "#menu" }, + { name: "Contact", href: "#contact" }, + { name: "Hero", href: "#hero" }, + { name: "About", href: "#about" }, + { name: "Testimonials", href: "#testimonials" } + ]; return ( + logo="SAIKAI" + ctaButton={{ + text: "Reserve", href: "#reserve"}} + navItems={navItems} + />
+ ] +} + copyright="© 2024 Soba Izakaya Saikai. All rights reserved." + links={[]} + />
); -- 2.49.1