import { Activity } from 'lucide-react'; import { PageFrame, SkeletonBlock, SurfaceCard } from '../../../components/ui/surface'; export default function SchedulingSkeleton() { return (
{Array.from({ length: 4 }).map((_, i) => )}
{[0, 1, 2, 3].map(i => )}
{Array.from({ length: 8 }).map((_, i) => (
))}
); }