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: "#" } + ] + } + ]} + />
);