mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-06 03:00:16 -04:00
* chore: fix conflicts * chore: fix conflicts * chore: pause marquee * chore: fix conflicts * chore: fix conflicts * chore: address review comments * chore: fix conflicts * chore: other bug fixes * chore: fix conflicts * chore: fix radius * chore: fix review changes * chore: fix conflicts * chore: revert other * chore: fix conflicts * chore: fix review changes * chore: fix conflicts * chore: fix review changes * chore: fix button state * chore: fix button state * chore: fix review changes * chore: fix lint * chore: fix conflicts * chore: add metadata * chore: fix things * chore: fix overwritten states * chore: fix warnings * chore: fix button state * chore: fix review changes * chore: fix review changes * chore: fix hover state * chore: fix popover * chore: fix review changes * chore: fix review changes
25 lines
992 B
TypeScript
25 lines
992 B
TypeScript
import { Skeleton } from '@/components/emcn'
|
|
|
|
export default function LoginLoading() {
|
|
return (
|
|
<div className='flex flex-col items-center'>
|
|
<Skeleton className='h-[38px] w-[80px] rounded-[4px]' />
|
|
<div className='mt-8 w-full space-y-2'>
|
|
<Skeleton className='h-[14px] w-[40px] rounded-[4px]' />
|
|
<Skeleton className='h-[44px] w-full rounded-[10px]' />
|
|
</div>
|
|
<div className='mt-4 w-full space-y-2'>
|
|
<Skeleton className='h-[14px] w-[64px] rounded-[4px]' />
|
|
<Skeleton className='h-[44px] w-full rounded-[10px]' />
|
|
</div>
|
|
<Skeleton className='mt-6 h-[44px] w-full rounded-[10px]' />
|
|
<Skeleton className='mt-6 h-[1px] w-full rounded-[1px]' />
|
|
<div className='mt-6 flex w-full gap-3'>
|
|
<Skeleton className='h-[44px] flex-1 rounded-[10px]' />
|
|
<Skeleton className='h-[44px] flex-1 rounded-[10px]' />
|
|
</div>
|
|
<Skeleton className='mt-6 h-[14px] w-[200px] rounded-[4px]' />
|
|
</div>
|
|
)
|
|
}
|