import { Link } from 'wouter' type DevRouteEntry = { path: string title: string description: string } const DEV_ROUTES: DevRouteEntry[] = [ { path: '/dev/chat-states', title: 'Chat states', description: 'Every chat state as one continuous conversation, rendered by the production components over fixtures.' }, { path: '/dev/tool-calls', title: 'Tool calls', description: 'Tool-call group fixtures: single and merged runs, live states, subagent traces.' }, { path: '/dev/textures', title: 'Texture lab', description: 'Every texture across color presets, dark mode, widget tokens, and vivid surfaces.' }, { path: '/dev/harness', title: 'Harness debug', description: 'Drive a workspace over the real chat protocol with wire, client, and durable event logs.' } ] // The /dev index — a plain list of every dev route so pages stay // discoverable. Add new entries here when adding a route in DevRoutes. export function DevIndexPage() { return (
{route.description}