This commit is contained in:
Leon
2025-07-15 22:54:35 +02:00
commit f7eda17284
89 changed files with 18535 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { Loader2 } from "lucide-react"
export function LoadingSpinner() {
return (
<div className="min-h-screen bg-gray-50 flex items-center justify-center">
<Loader2 className="w-12 h-12 text-gray-400 animate-spin" data-testid="loading-spinner" />
</div>
)
}