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

This commit is contained in:
2026-02-17 10:59:56 +00:00
parent ec68bce90a
commit 6ddca18bef

View File

@@ -92,6 +92,7 @@ export default function ProductPage({ params }: ProductPageProps) {
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
</div>
<main className="min-h-screen flex items-center justify-center pt-20">
@@ -135,6 +136,7 @@ export default function ProductPage({ params }: ProductPageProps) {
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
</div>
<main className="min-h-screen flex items-center justify-center pt-20">
@@ -185,6 +187,7 @@ export default function ProductPage({ params }: ProductPageProps) {
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
</div>
<div id="productDetailCard" data-section="productDetailCard">
@@ -233,4 +236,4 @@ export default function ProductPage({ params }: ProductPageProps) {
</ReactLenis>
</ThemeProvider>
);
}
}