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

The receipts.
Not stock photos.

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 · $12,020 / 30 days · sold out in five
Dan Month 4 · $9,140 / 30 days · doubled best day
Consulting Highest month · $73,567 / 30 days · 254 units
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
Consulting client
Amazon Seller Central sales summary for a consulting client showing $73,567.56 in ordered product sales and 254 units over 30 days.
consulting · highest month $73,567 · 254 units
); } // ========================================================= // VIDEO TESTIMONIALS // ========================================================= function Videos() { const v = [ { kind: "note", name: "Danielle A.", 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", av: "assets/av-waldek2.png", fullName: "Waldek Sydorko", action: "Love", time: "2m", react: "love", reactCount: 2, msg: "My sales for December were around 10000£. Really chuffed about it and thanks Anna and Jay for your guidance. I've ordered couple of more products to launch in Feb-March" }, { kind: "receipt", name: "Tanja M.", role: "231 units · 3 SKUs", chip: "FB · receipt", av: "assets/av-tanja2.png", fullName: "Tanja Mütsch", action: "Like", time: "1m", msg: "Happy New Year to everyone! 🙂 We have 3 products available on amazon and sold 231 items since mid Oct. Thanks Anna and Jay! 🙂 On average, how long does it take to optimize PPC to the max when improving it on a daily basis?" }, { kind: "receipt", name: "Patricia M.", role: "$6,613 · 147 units", chip: "FB · receipt", av: "assets/av-patricia2.png", fullName: "Patricia McKinney-Lins", action: "Like", time: "1m", react: "like", reactCount: 3, msg: "147 units sold in December for $6613. 116 of first product; 31 of my second product. Still trying to figure out PPC" }, { kind: "receipt", name: "Mared J.", role: "300 units · £7,500", chip: "FB · receipt", av: "assets/av-mared2.png", fullName: "Mared Jenkins", action: "Like", time: "2m", react: "like", reactCount: 2, msg: "I sold all 300 units of my first product, around £7,500 sales 👍 Thanks both!!" }]; return (
Said by the people who did the work

Read it raw.
Unedited and unfiltered.

A handwritten note. Facebook posts and comments, screenshotted as-is. No "before / after," no edited testimonials — just what students actually said.
{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}
{it.fullName}

{it.msg}

{it.reactCount &&
{it.react === "love" && <> 👍 ❤️ } {it.react === "like" && 👍 } {it.reactCount}
}
{it.action} · Reply · {it.time}
{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 · 1:1 and the next small cohort
Jay — Jay calling from auckland · usually mornings your time
); } function Footer() { const [submitted, setSubmitted] = useS3(false); const [email, setEmail] = useS3(""); const WAITLIST_ENDPOINT = "https://formspree.io/f/mredvqgv"; const onSubmit = (e) => { e.preventDefault(); const v = email.trim(); if (!/^[^@\s]+@[^@\s]+\.[^@\s]+$/.test(v)) return; if (WAITLIST_ENDPOINT) { fetch(WAITLIST_ENDPOINT, { method: "POST", headers: { "Content-Type": "application/json", "Accept": "application/json" }, body: JSON.stringify({ email: v, _subject: "New cohort waitlist signup", source: "cohort-waitlist" }), }).catch(() => {}); } setSubmitted(true); }; return ( ); } Object.assign(window, { BeforeAfter, Videos, FinalCTA, Footer });