From 78f46e5101b2ab4980daa2510470e7b4f282f19a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 13 May 2026 08:54:34 +0000 Subject: [PATCH 1/3] Update src/app/cart/page.tsx --- src/app/cart/page.tsx | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx index aa242ac..9030e4d 100644 --- a/src/app/cart/page.tsx +++ b/src/app/cart/page.tsx @@ -24,15 +24,17 @@ export default function CartPage() { const subtotal = cartItems.reduce((acc, item) => acc + item.price * item.quantity, 0); return ( - - + +

Your Cart

-- 2.49.1 From ba3e3acbd5c94dc4b5636bc4978281ec230adc06 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 13 May 2026 08:54:35 +0000 Subject: [PATCH 2/3] Update src/app/checkout/page.tsx --- src/app/checkout/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx index 3cc86f3..743dda6 100644 --- a/src/app/checkout/page.tsx +++ b/src/app/checkout/page.tsx @@ -43,6 +43,7 @@ export default function CheckoutPage() { ]} textarea={{ name: "notes", placeholder: "Order Summary & Instructions" }} buttonText="Confirm Order" + useInvertedBackground={false} />
@@ -58,4 +59,4 @@ export default function CheckoutPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 2a0c70bc889a66ed99832bc589d7607c5f7890f4 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 13 May 2026 08:54:35 +0000 Subject: [PATCH 3/3] Update src/app/orders/page.tsx --- src/app/orders/page.tsx | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/app/orders/page.tsx b/src/app/orders/page.tsx index 9716f37..06efc29 100644 --- a/src/app/orders/page.tsx +++ b/src/app/orders/page.tsx @@ -6,15 +6,17 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin export default function OrdersPage() { return ( - + - +

Your Orders

-- 2.49.1