From 181d1a57617a1e1ba2f16e1bd2b7f87092ef034e Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 14 Jun 2026 13:48:42 +0000 Subject: [PATCH] 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: "#"}, + ]} + /> );