const STATS = [ { value: "$0", label: "default cost" }, { value: "100%", label: "local-capable" }, { value: "7", label: "MCP tools" }, { value: "<1s", label: "fast-route answers" }, ]; const TECH = [ "FastAPI", "PathRAG", "Qdrant", "Hybrid retrieval", "Cross-encoder rerank", "LangGraph agent", "Whisper ASR", "Kokoro TTS", "Cohere · OpenAI · Anthropic", "MCP server", "Caddy TLS", "Podman", ]; export function Stack() { return (
{/* stats */}
{STATS.map((s) => (
{s.value}
{s.label}
))}
{/* tech credibility */}

Production-shaped, provider-agnostic, swappable at every layer

{TECH.map((t) => ( {t} ))}
); }