Components
An animated AI loading state that cycles through task statuses with scrolling terminal-style log lines and a colorful circular progress spinner.
Loading preview...
import AILoadingState from "@/components/ui/ai-loading";
export default function Demo() {
return (
<div className="flex min-h-[300px] w-full items-center justify-center p-8">
<AILoadingState />
</div>
);
}