/* global React, Reveal, ArrowGlyph */ function SoundLikeYou({ 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 feel lost for direction, like everyone else got a map you didn't.), }, { n: "03", text: (<>You keep buying courses, and somehow you're more confused than before.), }, { n: "04", text: (<>Some weeks, quietly, you wonder if you should just give up.), }, { n: "05", text: (<>You don't know who to trust — the loudest voices feel the least real.), }, ]; return (
Sound like you?

Five things every new seller feels.
None of them mean you're failing.

If you've been at this a while and you're stuck in your own head — there's nothing wrong with you. There's just no one in your corner yet.

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