From 44c4cbaec033a37d10145c2b6f5e66d920d61ebb Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 24 Jun 2026 11:19:29 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 90 ++++++++++++--------------------------- 1 file changed, 27 insertions(+), 63 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 1efc674..ce082b2 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,85 +7,49 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Menu", - "href": "#menu" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Reviews", - "href": "#reviews" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Features", - "href": "#features" - } -]; + { name: "Menu", href: "#menu" }, + { name: "About", href: "#about" }, + { name: "Reviews", href: "#reviews" }, + { name: "Contact", href: "#contact" }, + { name: "Hero", href: "#hero" }, + { name: "Features", href: "#features" } + ]; return ( + logo="Don Güero" + logoImageSrc="http://img.b2bpic.net/free-vector/taqueria-restaurant-hand-drawn-logo-template_23-2149527867.jpg" + ctaButton={{ + text: "Order Online", href: "#order"}} + navItems={navItems} + />
+ ]} + />
);