first commit

This commit is contained in:
2026-02-14 16:15:31 +05:30
commit 8f4cf07ec0
197 changed files with 17228 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import { CheckCircle } from "lucide-react";
const OrderSuccessCard = ({ children }) => {
return (
<div className="bg-white max-w-lg w-full rounded-2xl shadow-xl p-8 text-center">
<CheckCircle className="mx-auto text-green-500 w-20 h-20 mb-4" />
<h1 className="text-2xl font-bold mb-2">
Order Placed Successfully 🎉
</h1>
<p className="text-gray-600 mb-6">
Thank you for your purchase. Your order has been confirmed.
</p>
{children}
</div>
);
};
export default OrderSuccessCard;