From 6ed6d478a4ad4ad976a147ccc879e415d25fd89c Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 11:06:08 +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 12f7c40..5cfe350 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -44,6 +44,7 @@ export default function Layout() { Date: Sun, 14 Jun 2026 11:06:11 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 61 +++++++++++++++------------------------ 1 file changed, 23 insertions(+), 38 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 5cfe350..9899b9d 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -9,32 +9,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Menu", - "href": "#menu" + "name": "Menu", "href": "#menu" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Products", - "href": "#products" + "name": "Products", "href": "#products" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" } ]; @@ -43,36 +36,28 @@ export default function Layout() { + logo="One Fish, Two Fish" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=qancqh" + ctaButton={{ + text: "Book Table", href: "#contact"}} + navItems={navItems} />
+ brand="One Fish, Two Fish" + copyright="© 2024 One Fish, Two Fish. All rights reserved." + socialLinks={[ + { + icon: "Instagram", href: "#"}, + { + icon: "Facebook", href: "#"}, + { + icon: "Twitter", href: "#"}, + ]} + /> ); -- 2.49.1