mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-03 12:54:29 +00:00
21 lines
951 B
TypeScript
21 lines
951 B
TypeScript
export function StudioSplash({ waiting }: { waiting?: boolean }) {
|
|
return (
|
|
<div className="h-full w-full bg-neutral-950 flex items-center justify-center">
|
|
{waiting ? (
|
|
<div className="flex flex-col items-center gap-3 text-center px-6" role="status">
|
|
<div className="w-4 h-4 rounded-full border-2 border-neutral-700 border-t-neutral-500 animate-spin motion-reduce:animate-none" />
|
|
<p className="text-xs text-neutral-600">
|
|
Waiting for preview server… run{" "}
|
|
<code className="text-neutral-500 font-mono">npm run dev</code>
|
|
</p>
|
|
</div>
|
|
) : (
|
|
<div className="flex flex-col items-center gap-3 text-center px-6" role="status">
|
|
<div className="w-4 h-4 rounded-full bg-studio-accent animate-pulse motion-reduce:animate-none" />
|
|
<p className="text-xs text-neutral-600">Connecting to project…</p>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|