From 63748689f444f9aaa4ee67b5503cc1c157924a75 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 23 Jun 2026 10:44:02 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 113 +++++++++++--------------------------- 1 file changed, 33 insertions(+), 80 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 1dfb4fe..b85387a 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,102 +7,55 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "Menu", - "href": "#menu" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Testimonials", - "href": "#testimonials" - }, - { - "name": "Faq", - "href": "#faq" - } -]; + { name: "Home", href: "#hero" }, + { name: "Menu", href: "#menu" }, + { name: "About", href: "#about" }, + { name: "Contact", href: "#contact" }, + { name: "Features", href: "#features" }, + { name: "Testimonials", href: "#testimonials" }, + { name: "Faq", href: "#faq" } + ]; return ( + logo="Tracey's" + logoImageSrc="https://storage.googleapis.com/webild/users/user_3FXB7t9Onsty9H2NBDgxKTUEJYy/uploaded-1782211396325-8f976wfq.png" + ctaButton={{ + text: "Order Online", href: "#"}} + navItems={navItems} + />
+ ]} + copyright="© 2025 Tracey’s Belizean Restaurant. All rights reserved." + links={[ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + ]} + />
); -- 2.49.1