const features = [ { icon: ( ), title: 'Capture', description: 'Method, path, headers, query, body. Persists across restarts because the storage is SQLite on disk, not a hosted queue.', }, { icon: ( ), title: 'Inspect', description: 'A live SSE feed of incoming requests. Click any captured request to see the headers, the body, the timing.', }, { icon: ( ), title: 'Mock', description: 'Return a 200, a 500, or a custom JSON payload. For testing your own retry, backoff, and error-handling logic.', }, ] export default function Features() { return (

Three things, and nothing else

{features.map((feature, index) => (
{feature.icon}

{feature.title}

{feature.description}

))}
) }