// stats.jsx — gigantic stat numbers with chrome fill const { useRef: __str, useState: __sts, useEffect: __ste } = React; function Stats({ t }) { return (
{t.stats_eye}
{t.stats.map((s, i) => { const colors = ['magenta', 'azure', 'lime', 'tangerine']; return (
{s.n}
{s.l}
); })}
); } Object.assign(window, { Stats });