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

This commit is contained in:
2026-02-25 11:33:37 +00:00
parent b66800f012
commit 1907840e6b

View File

@@ -83,6 +83,10 @@ function ProductPageContent({ params }: ProductPageProps) {
brandName="Dring Together"
navItems={navItems}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
mobileMenuItems={[
...navItems,
{ type: 'button', text: "Cart", onClick: () => setCartOpen(true) }
]}
/>
);