"use client"; const TESTIMONIALS = [ { quote: "GraphRAG reduces token usage by routing simple queries to baseline while giving complex multi-hop questions the structured reasoning they need.", label: "Adaptive Intelligence", icon: "🧠", metric: "40% fewer tokens on simple queries", bg: "var(--color-canvas)", }, { quote: "Schema-bounded extraction ensures every entity maps to a valid TigerGraph vertex — no hallucinated node types, no broken traversals.", label: "Graph Integrity", icon: "📋", metric: "Zero invalid entity types", bg: "var(--color-surface-card)", }, { quote: "The reasoning path visualization shows exactly which graph edges were traversed, making every LLM answer traceable and verifiable.", label: "Explainability", icon: "🔗", metric: "Full evidence chain per answer", bg: "var(--color-canvas)", }, ]; export function TestimonialsSection() { return (
Key Insights

Why graphs change the game

{TESTIMONIALS.map((t, i) => (
{t.icon}
{t.label}

“{t.quote}”

{t.metric}
))}
); }