d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
40 lines
1.6 KiB
TypeScript
40 lines
1.6 KiB
TypeScript
import { Skeleton } from '@sim/emcn'
|
|
|
|
export default function ChatLoading() {
|
|
return (
|
|
<div className='light fixed inset-0 z-[100] flex flex-col bg-[var(--bg)] text-[var(--text-primary)]'>
|
|
<div className='border-[var(--border-1)] border-b px-4 py-3'>
|
|
<div className='mx-auto flex max-w-3xl items-center justify-between'>
|
|
<div className='flex items-center gap-[12px]'>
|
|
<Skeleton className='size-[28px] rounded-[6px]' />
|
|
<Skeleton className='h-[18px] w-[120px] rounded-[4px]' />
|
|
</div>
|
|
<Skeleton className='h-[28px] w-[80px] rounded-[6px]' />
|
|
</div>
|
|
</div>
|
|
<div className='flex min-h-0 flex-1 items-center justify-center px-4'>
|
|
<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>
|
|
<Skeleton className='h-10 w-full rounded-[10px]' />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className='relative p-3 pb-4 md:p-4 md:pb-6'>
|
|
<div className='relative mx-auto max-w-3xl md:max-w-[748px]'>
|
|
<Skeleton className='h-[48px] w-full rounded-[12px]' />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|