import { Card } from "@/components/ui/card"; export default function LoadingProfile() { return (
{/* Header Skeleton */}
{/* Main Content Skeleton */}
{/* LLM Selection Content Skeleton */}
{/* Page Title */}
{/* LLM Provider Cards */}
{[...Array(3)].map((_, index) => (
{/* Configuration Fields */}
{[...Array(2)].map((_, fieldIndex) => (
))}
))}
{/* Model Selection */}
{/* Fixed Bottom Button Skeleton */}
); }