Update src/app/shop/[id]/page.tsx

This commit is contained in:
2026-02-18 15:57:40 +00:00
parent b65e5c6210
commit 68a9a217ee

View File

@@ -86,7 +86,10 @@ export default function ProductPage({ params }: ProductPageProps) {
brandName="Refined Barber" brandName="Refined Barber"
navItems={[ navItems={[
{ name: "Home", id: "hero" }, { name: "Home", id: "hero" },
{ name: "Shop", id: "/shop" } { name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Team", id: "team" },
{ name: "Testimonials", id: "testimonials" }
]} ]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/> />
@@ -126,7 +129,10 @@ export default function ProductPage({ params }: ProductPageProps) {
brandName="Refined Barber" brandName="Refined Barber"
navItems={[ navItems={[
{ name: "Home", id: "hero" }, { name: "Home", id: "hero" },
{ name: "Shop", id: "/shop" } { name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Team", id: "team" },
{ name: "Testimonials", id: "testimonials" }
]} ]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/> />
@@ -173,7 +179,10 @@ export default function ProductPage({ params }: ProductPageProps) {
brandName="Refined Barber" brandName="Refined Barber"
navItems={[ navItems={[
{ name: "Home", id: "hero" }, { name: "Home", id: "hero" },
{ name: "Shop", id: "/shop" } { name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Team", id: "team" },
{ name: "Testimonials", id: "testimonials" }
]} ]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/> />