From 7b2b77d79b2b53b9b0356ca4dfad5ecd0ce00ce6 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:29:32 +0000 Subject: [PATCH] Update app/checkout/page.tsx --- app/checkout/page.tsx | 113 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 app/checkout/page.tsx diff --git a/app/checkout/page.tsx b/app/checkout/page.tsx new file mode 100644 index 0000000..a4a58ec --- /dev/null +++ b/app/checkout/page.tsx @@ -0,0 +1,113 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Button } from "@/components/ui/button"; +import { Input } from "@/components/ui/input"; +import { Label } from "@/components/ui/label"; +import { Footer } from "@/components/footer"; +import { CheckCircle2 } from "lucide-react"; +import { useState } from "react"; +import Link from "next/link"; + +export default function CheckoutPage() { + const [isOrdered, setIsOrdered] = useState(false); + + if (isOrdered) { + return ( +
+ +
+
+ +
+ Order Placed Successfully! +

Thank you for shopping with BharatStore. Your order #BS-12345 is being processed.

+ +
+
+
+
+ ); + } + + return ( +
+ + Checkout +
+
+
+

Shipping Address

+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+ +
+

Payment Method

+
+
+ + +
+
+ + +
+
+ + +
+
+
+
+ +
+
+

Order Summary

+
+
+ Items Total + ₹2,499 +
+
+ Delivery + FREE +
+
+ Total Payable + ₹2,499 +
+
+ +
+
+
+
+
+ ); +}