/** * ProfilePreviewSkeleton Component * Loading state for ProfilePreview with organic shimmer animation */ import { Skeleton, SkeletonCircle, SkeletonText } from './SkeletonLoader'; export default function ProfilePreviewSkeleton() { return (
{/* Banner skeleton */}
{/* Avatar and Name Section */}
{/* Display name */} {/* Handle */}
{/* Description skeleton */}
{/* Stats skeleton */}
{/* Stat items */} {[1, 2, 3].map((i) => (
))}
{/* Join date skeleton */}
); }