This commit is contained in:
freedakgmail
2025-11-30 09:16:43 +08:00
parent b436ae0680
commit fd9c064749
227 changed files with 1251 additions and 912 deletions
+10 -1
View File
@@ -1,3 +1,12 @@
import { Loader2 } from "lucide-react"
export default function Loading() {
return null
return (
<div className="min-h-screen flex items-center justify-center bg-background">
<div className="flex flex-col items-center gap-4">
<Loader2 className="h-10 w-10 animate-spin text-primary" />
<p className="text-sm text-muted-foreground font-serif">...</p>
</div>
</div>
)
}