mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-06 03:00:16 -04:00
30 lines
1.1 KiB
TypeScript
30 lines
1.1 KiB
TypeScript
import { Skeleton } from '@/components/emcn'
|
|
|
|
export default function FormLoading() {
|
|
return (
|
|
<main className='relative flex min-h-screen flex-col text-foreground'>
|
|
<div className='relative z-30 flex flex-1 items-center justify-center px-4 pb-24'>
|
|
<div className='w-full max-w-[410px]'>
|
|
<div className='flex flex-col items-center justify-center'>
|
|
<div className='space-y-2 text-center'>
|
|
<Skeleton className='mx-auto h-8 w-32' />
|
|
<Skeleton className='mx-auto h-4 w-48' />
|
|
</div>
|
|
<div className='mt-8 w-full space-y-8'>
|
|
<div className='space-y-2'>
|
|
<Skeleton className='h-4 w-16' />
|
|
<Skeleton className='h-10 w-full rounded-[10px]' />
|
|
</div>
|
|
<div className='space-y-2'>
|
|
<Skeleton className='h-4 w-20' />
|
|
<Skeleton className='h-10 w-full rounded-[10px]' />
|
|
</div>
|
|
<Skeleton className='h-10 w-full rounded-[10px]' />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
)
|
|
}
|