From c97315f4b3b021a0bdbdd6241b2f26a123ce15eb Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 23 Jun 2026 09:08:57 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 50 ++++++++++++--------------------------- 1 file changed, 15 insertions(+), 35 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 34bf282..652a782 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Home", - "href": "#hero" + "name": "Home", "href": "#hero" }, { - "name": "Products", - "href": "#products" + "name": "Products", "href": "#products" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Features", - "href": "#features" + "name": "Features", "href": "#features" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" } ]; @@ -43,10 +36,9 @@ export default function Layout() {
@@ -59,33 +51,21 @@ export default function Layout() { { items: [ { - label: "About Us", - href: "#", - }, + label: "About Us", href: "#"}, { - label: "Services", - href: "#features", - }, + label: "Services", href: "#features"}, { - label: "Products", - href: "#products", - }, + label: "Products", href: "#products"}, ], }, { items: [ { - label: "Contact", - href: "#contact", - }, + label: "Contact", href: "#contact"}, { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ], }, ]} -- 2.49.1