File size: 2,449 Bytes
005833b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
"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 (
    <section className="section" style={{ background: "var(--color-surface-soft)" }}>
      <div className="container">
        <div className="text-center mb-12">
          <div className="caption-uppercase mb-3" style={{ color: "var(--color-tiger-orange)" }}>
            Key Insights
          </div>
          <h2 className="display-lg">Why graphs change the game</h2>
        </div>

        <div className="grid grid-cols-1 md:grid-cols-3 gap-6">
          {TESTIMONIALS.map((t, i) => (
            <div
              key={i}
              className="card card-hover"
              style={{ background: t.bg }}
            >
              <div style={{ fontSize: "2rem", marginBottom: "16px" }}>{t.icon}</div>
              <div className="caption-uppercase mb-2" style={{ color: "var(--color-tiger-orange)" }}>
                {t.label}
              </div>
              <p className="body-md mb-4" style={{ color: "var(--color-body)" }}>
                &ldquo;{t.quote}&rdquo;
              </p>
              <div style={{
                padding: "8px 14px",
                background: "var(--color-tiger-orange-light)",
                borderRadius: "8px",
                fontFamily: "var(--font-mono)",
                fontSize: "0.8125rem",
                fontWeight: 500,
                color: "var(--color-tiger-orange)",
              }}>
                {t.metric}
              </div>
            </div>
          ))}
        </div>
      </div>
    </section>
  );
}