/* global React, Reveal, MethodCompare */ // ========================================================= // METHOD (landing variant) — Draft 1 "Editorial split": // full-width title up top, then a text | before-after split, // then a marquee of product listings across the bottom. // ========================================================= const MTH_PRODUCTS = [ { img: "assets/listing-hockey-hero.jpg", title: "Field Hockey Skills Training Mat \u2014 Designed by Olympian Shea McAleese", brand: "Inside Hockey", dollars: "139", cents: "00", }, { img: "assets/listing-skinnies-hero.webp", title: "Kalahari Kabu Beef Biltong \u0026 Jerky Maker", brand: "Kalahari Kabu", dollars: "399", cents: "00", }, { img: "assets/mrq-frother.jpg", title: "SpecChef Electric Milk Frother \u0026 Warmer", brand: "SpecChef", dollars: "49", cents: "00", }, { img: "assets/mrq-sunscreen.jpg", title: "Skinnies Sungel SPF30 Waterless Sunscreen", brand: "Skinnies", dollars: "29", cents: "00", }, ]; function MethodListingCard({ p, hidden }) { return (
{hidden

{p.title}

{p.brand}

${p.dollars}{p.cents}

); } function MethodLanding({ onBook }) { return (
The method

Most people obsess over the product. Almost nobody learns to sell it.

The truth is, almost nobody fails at Amazon purely because the product was wrong. They fail at one of 3 walls — and they usually blame the wrong one.

  1. 01

    First, they pick a product they can’t win with — then spend months finding out later.

  2. 02

    The one that surprises people. Even with the right product, they never fully learn how to actually sell it.

  3. 03

    They never really get going. Knowing isn’t doing — and most people stall there for years.

I’ll be straight: walls one and three are fixable. The middle one — selling instead of showing — is the part almost no coach can teach, because most don’t know it themselves. That’s the gap. Let me show you.

A real client rebrand. Same bottle, same capsules — only how it was shown changed. The market noticed.
Same playbook, other products →
{MTH_PRODUCTS.map((p, i) => )} {MTH_PRODUCTS.map((p, i) =>
Different products, one job: each actually sells — built to be felt in half a second, not just seen.
); } Object.assign(window, { MethodLanding });