From cdec201cedd8a9deaf75dfe5ae92d82d55e19497 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 15 Jun 2026 12:06:49 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 93 ++++++++++++--------------------------- 1 file changed, 28 insertions(+), 65 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 251beb7..3c64f5a 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,86 +7,49 @@ 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": "Reviews", - "href": "#reviews" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Gallery", - "href": "#gallery" - }, - { - "name": "Metrics", - "href": "#metrics" - } -]; + { "name": "Home", "href": "#hero" }, + { "name": "Menu", "href": "#menu" }, + { "name": "About", "href": "#about" }, + { "name": "Reviews", "href": "#reviews" }, + { "name": "Contact", "href": "#contact" }, + { "name": "Gallery", "href": "#gallery" }, + { "name": "Metrics", "href": "#metrics" } + ]; return ( + logo="Grillo" + logoImageSrc="http://img.b2bpic.net/free-photo/grilled-beef-steak-with-asparagus-roasted-vegetables_84443-94484.jpg" + ctaButton={{ + text: "Book Now", href: "#contact"}} + navItems={navItems} + />
+ items: [ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" } + ] + } + ]} + />
);