From d66d53812f04786cb7cdfc830582f9680378e1ab Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 14 Jun 2026 12:28:58 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 96 ++++++++++++--------------------------- 1 file changed, 28 insertions(+), 68 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 6a09c77..f183951 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,90 +7,50 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Shop", - "href": "#products" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Testimonials", - "href": "#testimonials" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Metrics", - "href": "#metrics" - } -]; + { "name": "Shop", "href": "#products" }, + { "name": "About", "href": "#about" }, + { "name": "Testimonials", "href": "#testimonials" }, + { "name": "Contact", "href": "#contact" }, + { "name": "Hero", "href": "#hero" }, + { "name": "Features", "href": "#features" }, + { "name": "Metrics", "href": "#metrics" } + ]; return ( + logo="Ongonwear" + logoImageSrc="http://img.b2bpic.net/free-vector/minimalist-fashion-typography-logo-template_742173-7469.jpg" + ctaButton={{ + text: "Buy Now", href: "#products"}} + navItems={navItems} + />
+ ]} + />
);