/* global React, Reveal, ArrowGlyph */ const { useState: useS3, useEffect: useE3, useRef: useR3 } = React; // ========================================================= // BEFORE / AFTER — the real receipt // ========================================================= function BeforeAfter() { return (
Real cohort wins

The receipts.
Not a stock photo.

Tim from Switzerland and Dan from Australia, both posting to our private cohort group the night their spike landed. Two students, two countries, two products — same playbook. No edits. No re-shoots. Their words, their dashboards.

Channel ImportXperts cohort (private FB group)
Tim Handheld fan · $15,890 / 30 days · sold out in five
Dan Month 4 · $9,140 / 30 days · doubled best day
Tim's Facebook post to the ImportXperts cohort, dated December 14 2019, showing his Amazon Seller dashboard.
tim · ch → us december · cohort
Dan's Facebook post to the ImportXperts cohort, dated December 21 2020, celebrating a record sales day in his fourth month on Amazon US.
dan · au → us december · cohort
); } // ========================================================= // VIDEO TESTIMONIALS // ========================================================= function Videos() { const v = [ { kind: "note", name: "Danielle", role: "handwritten · 2021", chip: "Handwritten · 2021", big: true, src: "assets/note-danielle.png", quote: "Thanks for helping me achieve my Amazon goals and dreams this year. What a ride!! Looking forward to the next chapter." }, { kind: "receipt", name: "Waldek S.", role: "UK · £10K Dec", chip: "FB · receipt", src: "assets/fb-waldek.png" }, { kind: "receipt", name: "Tanja M.", role: "231 units · 3 SKUs", chip: "FB · receipt", src: "assets/fb-tanja.png" }, { kind: "receipt", name: "Patricia M.", role: "$6,613 · 147 units", chip: "FB · receipt", src: "assets/fb-patricia.png" }, { kind: "receipt", name: "Mared J.", role: "300 units · £7,500", chip: "FB · receipt", src: "assets/fb-mared.png" }]; return (
Said by the people who did the work

Hear them tell it.
Or read it raw.

A handwritten note. A handful of unedited Facebook messages. One video (more coming). No "before / after." Just the actual mail and messages this work generates.
{v.map((it, i) => { const classes = "vid" + ( it.big ? " vid--big" : "") + ( it.kind === "receipt" ? " vid--receipt" : "") + ( it.kind === "note" ? " vid--note" : ""); const Tag = it.href ? "a" : "div"; const tagProps = it.href ? { href: it.href, target: "_blank", rel: "noopener noreferrer" } : {}; return ( {it.kind === "video" && <> {it.src && {`${it.name}}
{it.chip}

{it.name}

{it.role} {it.label}
} {it.kind === "receipt" && <>
{it.chip}
{`Facebook
{it.name} {it.role}
} {it.kind === "note" && <>
Handwritten thank-you note from Danielle, 2021
The kind of mail this work generates

"{it.quote}"

{it.name} · {it.role}
}
); })}
); } // ========================================================= // FINAL CTA + FOOTER // ========================================================= function FinalCTA({ onBook }) { return (
what happens on the call

A 30-min talk. Then a clear next step.

You walk me through where you are. I tell you, plainly, whether I think I can help — and if so, which track fits. If not, I'll point you to who or what does.

01
10 min
Where you are
02
10 min
The questions that matter
03
10 min
A clear next step
Read the story first
Not ready for a call? Send me a one-paragraph email at hello@jaysbansal.com telling me where you're stuck. I read every one and reply within 48 hours.
currently booking · june cohort · 6 of 8 seats taken
Jay — Jay calling from auckland · usually mornings your time
); } function Footer() { const [submitted, setSubmitted] = useS3(false); const onSubmit = (e) => { e.preventDefault(); setSubmitted(true); }; return ( ); } Object.assign(window, { BeforeAfter, Videos, FinalCTA, Footer });