13 lines
439 B
TypeScript
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>
|
|
)
|
|
}
|