export function PostGridSkeleton({ count = 8 }: { count?: number }) { return (
{Array.from({ length: count }, (_, index) => (
))}
); }