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