From 72e3cb53eacf8e225e65b043fdbf40eec4da2b48 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 8 Jun 2026 09:56:05 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 76 ++++++++++++--------------------------- 1 file changed, 22 insertions(+), 54 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index ea32def..452b38c 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": "About Us", - "href": "#about" + "name": "About Us", "href": "#about" }, { - "name": "Our Products", - "href": "#products" + "name": "Our Products", "href": "#products" }, { - "name": "How It Works", - "href": "#how-it-works" + "name": "How It Works", "href": "#how-it-works" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "FAQ", - "href": "#faq" + "name": "FAQ", "href": "#faq" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -57,58 +48,35 @@ export default function Layout() {