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

This commit is contained in:
2026-02-19 15:27:57 +00:00
parent 58d0dd95ce
commit 93e681e046

View File

@@ -86,8 +86,10 @@ export default function ProductPage({ params }: ProductPageProps) {
<NavbarStyleApple
brandName="Brew Haven"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "products" },
{ name: "Process", id: "features" },
{ name: "Reviews", id: "testimonial" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
@@ -131,8 +133,10 @@ export default function ProductPage({ params }: ProductPageProps) {
<NavbarStyleApple
brandName="Brew Haven"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "products" },
{ name: "Process", id: "features" },
{ name: "Reviews", id: "testimonial" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
@@ -183,8 +187,10 @@ export default function ProductPage({ params }: ProductPageProps) {
<NavbarStyleApple
brandName="Brew Haven"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "products" },
{ name: "Process", id: "features" },
{ name: "Reviews", id: "testimonial" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
@@ -240,4 +246,4 @@ export default function ProductPage({ params }: ProductPageProps) {
</ReactLenis>
</ThemeProvider>
);
}
}