Update src/app/shop/page.tsx

This commit is contained in:
2026-02-19 19:02:19 +00:00
parent 7af0862a5a
commit d2c4a178bb

View File

@@ -37,10 +37,9 @@ export default function ShopPage() {
<NavbarLayoutFloatingOverlay
brandName="Blue Forest Project"
navItems={[
{ name: "Home", id: "/" },
{ name: "Mission", id: "mission" },
{ name: "Impact", id: "impact" },
{ name: "Updates", id: "updates" },
{ name: "Follow the Journey", id: "follow-the-journey" },
{ name: "Support", id: "support" },
{ name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" }
@@ -58,7 +57,7 @@ export default function ShopPage() {
title: "Project", items: [
{ label: "About Blue Forest", href: "#mission" },
{ label: "Why Kelp Matters", href: "#why-kelp" },
{ label: "Our Updates", href: "#updates" }
{ label: "Follow the Journey", href: "#follow-the-journey" }
]
},
{
@@ -102,10 +101,9 @@ export default function ShopPage() {
<NavbarLayoutFloatingOverlay
brandName="Blue Forest Project"
navItems={[
{ name: "Home", id: "/" },
{ name: "Mission", id: "mission" },
{ name: "Impact", id: "impact" },
{ name: "Updates", id: "updates" },
{ name: "Follow the Journey", id: "follow-the-journey" },
{ name: "Support", id: "support" },
{ name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" }
@@ -131,7 +129,7 @@ export default function ShopPage() {
title: "Project", items: [
{ label: "About Blue Forest", href: "#mission" },
{ label: "Why Kelp Matters", href: "#why-kelp" },
{ label: "Our Updates", href: "#updates" }
{ label: "Follow the Journey", href: "#follow-the-journey" }
]
},
{
@@ -155,4 +153,4 @@ export default function ShopPage() {
</ReactLenis>
</ThemeProvider>
);
}
}