diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index ccd707a..d22a163 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,106 +7,62 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "About", - "href": "#about" - }, - { - "name": "Menu", - "href": "#menu" - }, - { - "name": "Reviews", - "href": "#reviews" - }, - { - "name": "Location", - "href": "#location" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Gallery", - "href": "#gallery" - } -]; + { name: "About", href: "#about" }, + { name: "Menu", href: "#menu" }, + { name: "Reviews", href: "#reviews" }, + { name: "Location", href: "#location" }, + { name: "Hero", href: "#hero" }, + { name: "Features", href: "#features" }, + { name: "Gallery", href: "#gallery" } + ]; return ( + logo="Soba Izakaya Saikai" + logoImageSrc="http://img.b2bpic.net/free-photo/woman-practicing-japanese-handwriting-indoors_23-2149124170.jpg" + ctaButton={{ + text: "Reserve", href: "#reservation"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 Soba Izakaya Saikai. All rights reserved." + links={[ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" } + ]} + />
);