From 20c6cef1f84a4b8d956ad4e2748355d93049888d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 12:49:28 +0000 Subject: [PATCH] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 33 +++++++++++++-------------------- 1 file changed, 13 insertions(+), 20 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index d26c827..d05c5df 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -86,13 +86,11 @@ export default function ProductPage({ params }: ProductPageProps) { brandName="Pepper Peak" navItems={[ { name: "Home", id: "/" }, - { name: "About", id: "about" }, - { name: "Flavors", id: "flavors" }, - { name: "Testimonials", id: "testimonials" }, - { name: "Shop", id: "shop" }, - { name: "Contact", id: "contact" }, + { name: "About", id: "/#about" }, + { name: "Flavors", id: "/#flavors" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "Contact", id: "/#contact" }, ]} - button={{ text: "Cart", onClick: () => setCartOpen(true) }} />
@@ -123,13 +121,11 @@ export default function ProductPage({ params }: ProductPageProps) { brandName="Pepper Peak" navItems={[ { name: "Home", id: "/" }, - { name: "About", id: "about" }, - { name: "Flavors", id: "flavors" }, - { name: "Testimonials", id: "testimonials" }, - { name: "Shop", id: "shop" }, - { name: "Contact", id: "contact" }, + { name: "About", id: "/#about" }, + { name: "Flavors", id: "/#flavors" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "Contact", id: "/#contact" }, ]} - button={{ text: "Cart", onClick: () => setCartOpen(true) }} />
@@ -167,13 +163,11 @@ export default function ProductPage({ params }: ProductPageProps) { brandName="Pepper Peak" navItems={[ { name: "Home", id: "/" }, - { name: "About", id: "about" }, - { name: "Flavors", id: "flavors" }, - { name: "Testimonials", id: "testimonials" }, - { name: "Shop", id: "shop" }, - { name: "Contact", id: "contact" }, + { name: "About", id: "/#about" }, + { name: "Flavors", id: "/#flavors" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "Contact", id: "/#contact" }, ]} - button={{ text: "Cart", onClick: () => setCartOpen(true) }} />
@@ -214,7 +208,7 @@ export default function ProductPage({ params }: ProductPageProps) {