// China Reach: the only licensed global SD-WAN into the PRC function ChinaReach({ ctx, standalone = false }) { const { t } = ctx; const c = t.china; return (
{!standalone && } {/* Top row: 3 pills explaining the license */}
{c.pillTitle}
{c.pills.map((p, i) => (
{`0${i + 1}`}

{p[0]}

{p[1]}

))}
{/* Comparison table (style aligned with Differentiators) */} {(() => { const tbl = c.compareTable; const gridCols = "1.4fr 1fr 1fr 1fr 1fr"; const renderCell = (v, ci) => { const emphasized = ci === 1; const base = { fontFamily: v === true || v === false ? "var(--mono)" : "inherit", fontSize: 13, color: emphasized ? "var(--ink)" : "var(--ink-2)", fontWeight: emphasized ? 500 : 400, }; if (v === true) return ; if (v === false) return ; return {v}; }; return (
{tbl.cols.map((h, j) => (
{h}
))}
{tbl.rows.map((row, ri) => (
{row[0]}
{row.slice(1).map((val, ci) => (
{renderCell(val, ci + 1)}
))}
))}
); })()} {/* bottom punchline */}
{c.punchKicker &&
{c.punchKicker}
}
{c.punchBody}
); } window.ChinaReach = ChinaReach;