Spaces:
Sleeping
Sleeping
| import { LoadingSpinner } from '@/components/ui/LoadingSpinner'; | |
| export default function Loading() { | |
| return ( | |
| <div className="min-h-screen flex items-center justify-center bg-gray-50 py-12 px-4 sm:px-6 lg:px-8"> | |
| <div className="text-center"> | |
| <LoadingSpinner size="lg" className="mx-auto text-indigo-600" /> | |
| <p className="mt-4 text-sm text-gray-600">Loading...</p> | |
| </div> | |
| </div> | |
| ); | |
| } |