diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 2567a4a..57a7990 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,92 +7,51 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Menu", - "href": "#features" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Testimonials", - "href": "#testimonials" - }, - { - "name": "Faq", - "href": "#faq" - } -]; + { name: "Home", href: "#hero" }, + { name: "About", href: "#about" }, + { name: "Menu", href: "#features" }, + { name: "Contact", href: "#contact" }, + { name: "Metrics", href: "#metrics" }, + { name: "Testimonials", href: "#testimonials" }, + { name: "Faq", href: "#faq" } + ]; return ( + logo="Cafe Artisan" + logoImageSrc="http://img.b2bpic.net/free-vector/set-vintage-coffee-emblems_1284-46478.jpg" + ctaButton={{ + text: "Book Table", href: "#contact"}} + navItems={navItems} + />
+ ]} + leftText="© 2024 Cafe Artisan. All rights reserved." + rightText="Crafted with love and coffee." + />
);