lty/qy-lty-admin/app/login/loading.tsx
2026-03-17 13:17:02 +08:00

13 lines
439 B
TypeScript

import { Loader2 } from "lucide-react"
export default function Loading() {
return (
<div className="min-h-screen w-full flex items-center justify-center bg-gradient-to-br from-gray-50 to-white">
<div className="flex flex-col items-center justify-center space-y-4">
<Loader2 className="h-12 w-12 text-pink-600 animate-spin" />
<p className="text-lg text-gray-600">...</p>
</div>
</div>
)
}