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,19 @@
import React from "react";
const ProductCardSkeleton = () => {
return (
<div className="bg-white rounded-2xl shadow-sm overflow-hidden animate-pulse">
{/* Image */}
<div className="h-56 bg-gray-200" />
{/* Content */}
<div className="p-4 space-y-3">
<div className="h-4 bg-gray-200 rounded w-3/4" />
<div className="h-4 bg-gray-200 rounded w-1/2" />
<div className="h-5 bg-gray-300 rounded w-1/3 mt-2" />
</div>
</div>
);
};
export default ProductCardSkeleton;