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

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 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