From d86535769516aab38beda3184465b915cd9b967e Mon Sep 17 00:00:00 2001 From: Daniel Rosel Date: Tue, 13 Jan 2026 15:05:33 +0100 Subject: [PATCH] chore: fixing visual bugs in cart --- web/src/app/cart/page.tsx | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/web/src/app/cart/page.tsx b/web/src/app/cart/page.tsx index 30ac3f2..dbcb30b 100644 --- a/web/src/app/cart/page.tsx +++ b/web/src/app/cart/page.tsx @@ -32,7 +32,8 @@ export default function CartPage() { {itemCount > 0 && ( @@ -42,7 +43,7 @@ export default function CartPage() { {itemCount === 0 ? (

Your cart is empty

- Browse our selection + Browse our selection
) : ( <> @@ -54,15 +55,11 @@ export default function CartPage() { >
- - {item.type} -

{item.name}

{item.type === 'hotel' && (
-

{String(item.metadata.roomType)}

{String(item.metadata.checkIn)} - {String(item.metadata.checkOut)}

{String(item.metadata.nights)} night{Number(item.metadata.nights) > 1 ? 's' : ''}

@@ -81,7 +78,8 @@ export default function CartPage() {

${item.price}

@@ -100,7 +98,7 @@ export default function CartPage() { dispatchInteraction('checkout_start', undefined, { total, itemCount }); window.location.href = '/checkout'; }} - className="w-full py-3 bg-blue-600 hover:bg-blue-700 text-white rounded-lg font-medium transition-colors" + className="btn-primary w-full" > Proceed to Checkout