import { Card, CardContent, CardHeader } from "@/components/ui/card" import { Skeleton } from "@/components/ui/skeleton" export function ThoughtSkeleton() { return (
) } export function ProfileSkeleton() { return (
) } export function TagsSkeleton() { return ( {[...Array(5)].map((_, i) => ( ))} ) } export function CountSkeleton() { return ( ) }