@@ -241,6 +243,7 @@ function ProductPageContent({ params }: ProductPageProps) {
{ name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" }
]}
+ button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx
index cc8fa6b..e12966d 100644
--- a/src/app/shop/page.tsx
+++ b/src/app/shop/page.tsx
@@ -43,6 +43,7 @@ function ShopPageContent() {
{ name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" }
]}
+ button={{ text: "Cart", onClick: () => console.log("cart") }}
/>
@@ -109,6 +110,7 @@ function ShopPageContent() {
{ name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" }
]}
+ button={{ text: "Cart", onClick: () => console.log("cart") }}
/>