diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 4c5c8fb..e6bf315 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,90 +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": "#menu" - }, - { - "name": "Reviews", - "href": "#testimonials" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Metrics", - "href": "#metrics" - } -]; + { name: "Home", href: "#hero" }, + { name: "About", href: "#about" }, + { name: "Menu", href: "#menu" }, + { name: "Reviews", href: "#testimonials" }, + { name: "Contact", href: "#contact" }, + { name: "Features", href: "#features" }, + { name: "Metrics", href: "#metrics" } + ]; return ( + logo="Shawarma Alassima" + ctaButton={{ text: "Call Now", href: "tel:0778330094" }} + navItems={navItems} + />
+ title: "Contact", items: [ + { label: "Call: 07 78 33 00 94", href: "tel:0778330094" }, + { label: "Location: Marrakesh", href: "#" } + ] + } + ]} + copyright="© 2024 Shawarma Alassima. All rights reserved." + links={[{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }]} + />
); -} +} \ No newline at end of file