import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; import { Skeleton } from "@/components/ui/skeleton"; interface SettingsSectionSkeletonProps { title: string; description?: string; } export function SettingsSectionSkeleton({ title, description }: SettingsSectionSkeletonProps) { return ( {title} {description && {description}} {/* Profile skeleton */}
); }