import Link from 'next/link' import { Container } from '@/components/Container' import Episodes from '@/components/Episodes' function Skeleton({ width, height, className, color }) { const w = width ? '' : 'w-full'; const c = color ? color : 'bg-slate-200'; return (
); }; function EpisodeEntryLoading() { return (