import type { AgentStatus } from '@page-agent/core' import { cn } from '@/lib/utils' // Status dot indicator export function StatusDot({ status }: { status: AgentStatus }) { const colorClass = { idle: 'bg-muted-foreground', running: 'bg-blue-500', completed: 'bg-green-500', error: 'bg-destructive', }[status] const label = { idle: 'Ready', running: 'Running', completed: 'Done', error: 'Error', }[status] return (
}
// Empty state with logo
export function EmptyState() {
return (
Enter a task to automate this page