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 +
+
+
+ +
+ + +
+
+ +
+ ); +}