// Round 2 — Simplify (3 steps), TopTier specialists, Journey (no weeks) function Simplify({ copy }) { const s = copy.simplify; return ( {s.eyebrow} {s.title} {s.steps.map((st, i) => ( {st.n} {st.t} {st.d} ))} ); } function TopTier({ copy }) { const t = copy.specialists; return ( {t.eyebrow} {t.title} {t.sub} {t.pillars.map((p, i) => ( {p.t} {p.d} ))} {t.note} ); } function Journey({ copy }) { const j = copy.journey; return ( {j.eyebrow} {j.title} {j.sub} {j.steps.map((st, i) => ( {String(i + 1).padStart(2, '0')} {st.t} {st.d} ))} ); } Object.assign(window, { Simplify, TopTier, Journey });
{st.d}
{t.sub}
{p.d}
{t.note}
{j.sub}