Comprehensive admin + user dashboards (production-ready)

This commit is contained in:
Leon Serfaty
2026-06-07 17:54:30 -04:00
parent 155507f21a
commit f033f00379
122 changed files with 7878 additions and 805 deletions
+14
View File
@@ -0,0 +1,14 @@
import { HeaderSkeleton, EpisodeGridSkeleton, Skeleton } from "@/components/ui/skeleton";
export default function EpisodesLoading() {
return (
<>
<HeaderSkeleton />
<div className="mb-6 flex flex-wrap gap-3">
<Skeleton className="h-10 w-full sm:max-w-xs" />
<Skeleton className="h-10 w-[150px]" />
</div>
<EpisodeGridSkeleton count={8} />
</>
);
}