We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59bc182 commit d508d0aCopy full SHA for d508d0a
app/quizzes/surah/87/loading.tsx
@@ -0,0 +1,11 @@
1
+import { Skeleton } from "@/components/ui/skeleton";
2
+export default function Loading() {
3
+ return (
4
+ <div className="min-h-screen bg-gray-50 dark:bg-gray-900 p-4">
5
+ <div className="container mx-auto max-w-4xl">
6
+ <Skeleton className="h-12 w-48 mb-6" />
7
+ <Skeleton className="h-[500px] w-full rounded-lg" />
8
+ </div>
9
10
+ );
11
+}
0 commit comments