diff --git a/app/layout.tsx b/app/layout.tsx index 3141255..7b00571 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -23,7 +23,7 @@ * * FUTURE DEVELOPERS: * - To add a new global provider (theme, analytics, etc.), wrap it here. - * - WhatsApp number for orders is currently hardcoded in CartDrawer.tsx (46709864995). + * - WhatsApp number for orders is currently hardcoded in CartDrawer.tsx (46739381089). * - If you ever split the cart into a separate modal library, keep the provider here. */ diff --git a/components/CartContext.tsx b/components/CartContext.tsx index 8b6e9ac..1b6f1e0 100644 --- a/components/CartContext.tsx +++ b/components/CartContext.tsx @@ -27,7 +27,7 @@ * * WHATSAPP ORDER FLOW (the "checkout" for this restaurant): * The cart never talks to a real payment gateway. Instead, the drawer builds a - * beautifully formatted message and opens https://wa.me/46709864995 with it pre-filled. + * beautifully formatted message and opens https://wa.me/46739381089 with it pre-filled. * This matches exactly how the reservation form on the homepage works. * * FUTURE IMPROVEMENTS (documented for next developer): diff --git a/components/CartDrawer.tsx b/components/CartDrawer.tsx index 48ebac5..b5bc683 100644 --- a/components/CartDrawer.tsx +++ b/components/CartDrawer.tsx @@ -18,7 +18,7 @@ * Instead of a traditional Stripe checkout, we generate a pre-filled WhatsApp * message containing every line item + quantities + grand total. * This matches the restaurant's current real-world ordering process. - * The number 46709864995 is the same one used in the homepage reservation form. + * The number 46739381089 is the same one used in the homepage reservation form. * * FUTURE ENHANCEMENTS (documented here so nothing is forgotten): * - Add "Special requests" textarea per order @@ -71,7 +71,7 @@ Thank you!`; const encoded = encodeURIComponent(message); // This is the same WhatsApp business number used for table reservations on the homepage - window.open(`https://wa.me/46709864995?text=${encoded}`, '_blank'); + window.open(`https://wa.me/46739381089?text=${encoded}`, '_blank'); }; // Guard clause — drawer only renders when explicitly opened via context