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

+
+
+ + +
+
+ ); +}