From 8db2b9d8f4a8fe251edfd51291b7b99f33ab3f51 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 13 Jun 2026 08:02:12 +0000 Subject: [PATCH] Add src/app/checkout/page.tsx --- src/app/checkout/page.tsx | 81 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 src/app/checkout/page.tsx diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx new file mode 100644 index 0000000..3e379ed --- /dev/null +++ b/src/app/checkout/page.tsx @@ -0,0 +1,81 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import TextAnimation from "@/components/text/TextAnimation"; +import { Facebook, Instagram, Twitter } from "lucide-react"; + +export default function CheckoutPage() { + return ( + + + + +
+ +

+ We're excited for you to enjoy your Food Paradise meal! Here you can finalize your order and choose your preferred payment method. +

+ +
+

Payment Options:

+

+ We support secure payments via Razorpay (Credit/Debit Cards, UPI, Netbanking), convenient Cash on Delivery, and various digital Wallets. Select your preferred option at checkout. +

+

Order Confirmation:

+

+ Once your payment is successful, you'll receive an instant order confirmation via email and WhatsApp, detailing your meal and estimated delivery time. +

+

Live Delivery Tracking:

+

+ Track your Food Paradise order in real-time from our kitchen to your doorstep. Get live updates on its journey and estimated arrival time directly on our platform. +

+
+
+ + +
+
+ ); +}