classify web

This commit is contained in:
Husanjonazamov
2026-02-24 12:52:49 +05:00
commit 64af77101f
310 changed files with 45449 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import { Skeleton } from "../ui/skeleton";
const ProductCardSkeleton = () => {
return (
<div className="border p-2 rounded-2xl flex flex-col gap-2">
<Skeleton className="w-full aspect-square" />
<div className="space-between">
<Skeleton className="w-1/4 h-4" />
<Skeleton className="w-1/4 h-4" />
</div>
<Skeleton className="w-3/4 h-4" />
<Skeleton className="w-2/3 h-4" />
</div>
);
};
export default ProductCardSkeleton;