From 34da7180f79611dc14c7ad6a09e1a6c07bb053e0 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 23 Jun 2026 10:48:56 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 83 ++++++++++++++++----------------------- 1 file changed, 33 insertions(+), 50 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index ebda028..85b6f88 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,70 +7,53 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", "href": "#hero" - }, - { - "name": "Menu", "href": "#menu" - }, - { - "name": "Reservations", "href": "#reservations" - }, - { - "name": "About", "href": "#about" - }, - { - "name": "Testimonials", "href": "#testimonials" - }, - { - "name": "Faq", "href": "#faq" - }, - { - "name": "Contact", "href": "#contact" - } -]; + { name: "Home", href: "#hero" }, + { name: "Menu", href: "#menu" }, + { name: "Reservations", href: "#reservations" }, + { name: "About", href: "#about" }, + { name: "Testimonials", href: "#testimonials" }, + { name: "Faq", href: "#faq" }, + { name: "Contact", href: "#contact" } + ]; return ( + logo="Zaitoon" + ctaButton={{ text: "Book Table", href: "#contact" }} + navItems={navItems} + />
+ title: "Location", items: [ + { label: "Av. Kenneth Kaunda, 458", href: "#" }, + { label: "Maputo, Mozambique", href: "#" }, + ], + }, + ] + } + links={[ + { label: "Menu", href: "#menu" }, + { label: "Contact", href: "#contact" } + ]} + copyright="© 2024 Zaitoon By Galaxy. All rights reserved." + imageSrc="http://img.b2bpic.net/free-photo/adding-pinch-sumakh-lavash-kutab_114579-2336.jpg" + />
); -- 2.49.1