/* global React, Reveal, ArrowGlyph */ // ========================================================= // HONEST PATH — the part most coaches leave out. // Sits between "You've said some version of this" and the origin story. // Holds three lines that must stay verbatim. // ========================================================= function HonestPath({ onBook }) { const rows = [ { mark: "$0", tag: "where it started", myth: <>“Start with nothing and scale to six figures in weeks.”, // verbatim: "I started with $0 and begged and borrowed" text: <>I started with $0 and begged and borrowed to place that first order. No safety net, no rich uncle — just a small bet I couldn’t really afford to lose., }, { mark: "3 yrs", tag: "the real timeline", myth: <>“Quit your job in your first 90 days.”, // verbatim: "it took me three years to replace my income" text: <>It took me three years to replace my income. Not three weeks, not one lucky product — three years of small, boring, repeatable moves., }, { mark: "$10K", tag: "the part nobody mentions", myth: <>“Hit a $10K month and you’re finally free.”, // verbatim: "$10K month… still wasn't freedom yet" text: <>Even my first $10K month… still wasn’t freedom. The money was real, but the business needed me in every chair. Freedom came later — when the system ran without me., }, ]; return (
The honest path

The honest way out is slower than they sell you. It’s also the only one that lasts.

If you’ve been burned by someone promising a shortcut, I get it — you’re not naive, the pitch was just good. Here’s every promise next to what actually happened.

{rows.map((r, i) => (
{r.mark}
{r.tag}

The pitch {r.myth}

The truth {r.text}

))}

I tell you this so the timeline in your head is honest from day one. Build it the right way and you get both — the business, and your life back.

); } Object.assign(window, { HonestPath });