Add loader to more-pages route

This commit is contained in:
JoeMakuta 2026-03-26 12:44:46 +02:00
parent 80ede9849a
commit d535851ad5

View file

@ -0,0 +1,10 @@
import { Skeleton } from "@/components/ui/skeleton";
export default function Loading() {
return (
<div className="flex flex-1 flex-col items-center justify-center gap-4 p-4">
<Skeleton className="h-4 w-64" />
<Skeleton className="h-32 w-full max-w-2xl rounded-xl" />
</div>
);
}