From 20b45170b722445780cbe3829ec5de07c6cf7602 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 24 Jun 2026 07:32:21 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 58 ++++++++++++--------------------------- 1 file changed, 17 insertions(+), 41 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index e0cd834..d816d93 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": "#" + "name": "Home", "href": "#" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Exhibits", - "href": "#exhibits" + "name": "Exhibits", "href": "#exhibits" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" } ]; @@ -43,10 +36,9 @@ export default function Layout() {
@@ -59,45 +51,29 @@ export default function Layout() { { items: [ { - label: "About Us", - href: "#about", - }, + label: "About Us", href: "#about"}, { - label: "Conservation", - href: "#", - }, + label: "Conservation", href: "#"}, { - label: "Careers", - href: "#", - }, + label: "Careers", href: "#"}, ], }, { items: [ { - label: "Plan Visit", - href: "#contact", - }, + label: "Plan Visit", href: "#contact"}, { - label: "Pricing", - href: "#", - }, + label: "Pricing", href: "#"}, { - label: "FAQs", - href: "#faq", - }, + label: "FAQs", href: "#faq"}, ], }, { items: [ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ], }, ]} -- 2.49.1