// ============ EXPERIENCE TIMELINE ============ function Experience() { const { t } = window.useLang(); const ref = window.useReveal(); return (
{t.exp.kicker}

{t.exp.h2}

{window.EXPERIENCE.map((e, i) => (
{e.co.split(/[\s·]/).filter(Boolean).slice(0,2).map(w => w[0]).join('').slice(0,2).toUpperCase()}

{e.role}

{e.co} · {e.dates}
{e.featured && ★ Active}
    {e.bullets.map((b, j) =>
  • {b}
  • )}
))}
); } window.Experience = Experience;