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,25 @@
import { Skeleton } from "@/components/ui/skeleton";
const ChatListCardSkeleton = () => {
return (
<div className="p-4 border-b">
<div className="flex items-start gap-3">
{/* Avatar skeleton */}
<Skeleton className="w-12 h-12 rounded-full" />
<div className="flex-1">
{/* Name skeleton */}
<Skeleton className="h-4 w-[40%] mb-2 rounded-md" />
{/* Message skeleton */}
<Skeleton className="h-3 w-[70%] rounded-md" />
</div>
{/* Time skeleton */}
<Skeleton className="h-3 w-[15%] rounded-md" />
</div>
</div>
)
}
export default ChatListCardSkeleton