From 5b70efb1f17acf88e30e052b33177a76381177c0 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 23 Jun 2026 19:16:45 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 131 +++++++++++++++----------------------- 1 file changed, 53 insertions(+), 78 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 2297cb3..5b0e5ff 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,102 +7,77 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Gallery", - "href": "#gallery" - }, - { - "name": "Testimonials", - "href": "#testimonials" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Faq", - "href": "#faq" - }, - { - "name": "Contact", - "href": "#contact" - } -]; + { + "name": "Home", "href": "#hero" + }, + { + "name": "About", "href": "#about" + }, + { + "name": "Gallery", "href": "#gallery" + }, + { + "name": "Testimonials", "href": "#testimonials" + }, + { + "name": "Metrics", "href": "#metrics" + }, + { + "name": "Faq", "href": "#faq" + }, + { + "name": "Contact", "href": "#contact" + } + ]; return ( + logo="Coffee Mug" + logoImageSrc="http://img.b2bpic.net/free-vector/minimal-logo-collection-two-colors_23-2148387451.jpg" + ctaButton={{ + text: "Order Now", href: "https://wolt.com"}} + navItems={navItems} + />
+ label: "Terms of Service", href: "#"}, + ]} + />
); -- 2.49.1