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 (
{label}
) } export function Logo({ className }: { className?: string }) { return Page Agent } // Empty state with logo export function EmptyState() { return (

Page Agent Ext

Enter a task to automate this page

) }