From 42fc78e402968f91c05ae454807a4f0b8621d509 Mon Sep 17 00:00:00 2001 From: Daniel Rosel Date: Fri, 5 Dec 2025 12:45:02 +0100 Subject: [PATCH] adding a checkout page to both sites --- web/src/app/airline/checkout/page.tsx | 11 +++++++++++ web/src/app/hotel/checkout/page.tsx | 11 +++++++++++ 2 files changed, 22 insertions(+) create mode 100644 web/src/app/airline/checkout/page.tsx create mode 100644 web/src/app/hotel/checkout/page.tsx diff --git a/web/src/app/airline/checkout/page.tsx b/web/src/app/airline/checkout/page.tsx new file mode 100644 index 0000000..2052570 --- /dev/null +++ b/web/src/app/airline/checkout/page.tsx @@ -0,0 +1,11 @@ +export default function AirlineCheckout() { + return ( +
+
+

+ Thank you for flying with us +

+
+
+ ); +} diff --git a/web/src/app/hotel/checkout/page.tsx b/web/src/app/hotel/checkout/page.tsx new file mode 100644 index 0000000..bf0b0ca --- /dev/null +++ b/web/src/app/hotel/checkout/page.tsx @@ -0,0 +1,11 @@ +export default function HotelCheckout() { + return ( +
+
+

+ Thank you for staying with us +

+
+
+ ); +}