diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 02df674..e10a05c 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,89 +7,57 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Menu", - "href": "#menu" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Testimonials", - "href": "#testimonials" - } -]; + { name: "Home", href: "#" }, + { name: "Features", href: "#features" }, + { name: "Menu", href: "#menu" }, + { name: "Contact", href: "#contact" }, + { name: "Hero", href: "#hero" }, + { name: "About", href: "#about" }, + { name: "Testimonials", href: "#testimonials" } + ]; return ( + logo="SAIKAI" + ctaButton={{ + text: "Reserve", href: "#reserve"}} + navItems={navItems} + />
+ ] +} + copyright="© 2024 Soba Izakaya Saikai. All rights reserved." + links={[]} + />
);