From f4c1ef5528678a96f1ae402720495dd756358883 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 13:48:40 +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 9239f98..3f26f6d 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -44,6 +44,7 @@ export default function Layout() { Date: Sun, 14 Jun 2026 13:48:42 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 62 +++++++++++++++------------------------ 1 file changed, 24 insertions(+), 38 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 3f26f6d..ca9a172 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": "Menu", - "href": "#menu" + "name": "Menu", "href": "#menu" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "name": "FAQ", - "href": "#faq" + "name": "FAQ", "href": "#faq" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" } ]; @@ -43,36 +36,29 @@ export default function Layout() { + logo="Tasty Stall" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=dquoks" + ctaButton={{ + text: "Order Now", href: "#contact"}} + navItems={navItems} + />
+ brand="Tasty Stall" + copyright="© 2024 Tasty Stall Inc. All rights reserved." + socialLinks={[ + { + icon: "Instagram", href: "#"}, + { + icon: "Facebook", href: "#"}, + { + icon: "Twitter", href: "#"}, + ]} + /> ); -- 2.49.1