/* global React, Reveal, ArrowGlyph */ // ========================================================= // SOUND LIKE YOU (landing variant) — identical to the // home-page SoundLikeYou, with two items removed for the // paid-traffic page: the old 02 ("lost for direction", // overlaps 01) and old 04 ("wonder if you should give up", // too dark right before a cold-traffic CTA). Remaining three // are renumbered and the headline updated to match. // Home page keeps all five. // ========================================================= function SoundLikeYouLanding({ onBook }) { const items = [ { n: "01", text: <>Drowning in info-overload — every YouTube guru says something different, and you can't tell who's right. }, { n: "02", text: <>You keep buying courses, and somehow you're more confused than before. }, { n: "03", text: <>You don't know who to trust — the loudest voices feel the least real. }]; return (
Sound familiar?

A few quiet thoughts you’ve probably had.
None of them mean you’re failing.

You’ve built a career — maybe a good one. So it stings that this is the thing that won’t click yet. There’s nothing wrong with you. There’s just no one in your corner yet.

{items.map((it, i) =>
{it.n}
{it.text}
)}
If any of these read like a transcript of your last 3am thought — you're exactly who I built this for.
); } Object.assign(window, { SoundLikeYouLanding });