From 38ca6b43b846ff48e6ecde8f111a3872731c7e52 Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:09:25 +0000 Subject: [PATCH] Seed: ecommerce template (24 files) --- src/pages/OrderConfirmation.tsx | 74 +++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 src/pages/OrderConfirmation.tsx diff --git a/src/pages/OrderConfirmation.tsx b/src/pages/OrderConfirmation.tsx new file mode 100644 index 0000000..39a86d8 --- /dev/null +++ b/src/pages/OrderConfirmation.tsx @@ -0,0 +1,74 @@ +import { Link } from "react-router-dom"; +import { Button } from "@/components/ui/button"; +import { Card, CardContent } from "@/components/ui/card"; +import { Separator } from "@/components/ui/separator"; +import { CheckCircle, Package, ArrowRight } from "lucide-react"; +import Header from "@/components/Header"; +import Footer from "@/components/Footer"; + +export default function OrderConfirmationPage() { + const orderNumber = "ORD-2024-" + Math.floor(1000 + Math.random() * 9000); + + return ( +
+
+ +
+
+ +
+ +

Order Confirmed!

+

Order number: {orderNumber}

+

Thank you for your purchase. You will receive a confirmation email shortly.

+ + + +

Order Summary

+
+
+ Classic Leather Jacket x1 + $189.00 +
+
+ Silk Evening Dress x1 + $245.00 +
+
+ +
+
+ Subtotal + $434.00 +
+
+ Shipping + Free +
+
+ Tax + $34.72 +
+
+ +
+ Total + $468.72 +
+
+
+ +
+ + +
+
+ +
+ ); +}