From 4524d6c2d109b8b6c381db21b7d180bc13854bcf Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 22:01:51 +0000 Subject: [PATCH] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 5f76acb..b642beb 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -241,7 +241,14 @@ export default function ProductPage({ params }: ProductPageProps) {
@@ -250,6 +257,10 @@ export default function ProductPage({ params }: ProductPageProps) { onClose={() => setCartOpen(false)} items={cartItems} total={cartTotal} + buttons={[ + { text: "Continue Shopping", onClick: () => setCartOpen(false) }, + { text: "Checkout", onClick: handleCheckout } + ]} />