/* global React, Eyebrow, Icon */ function HowItWorks(){ const steps = [ {n:"01", icon:"play", title:"Pick a campaign", body:"Browse live campaigns. Grab the brief, raw footage, and format inspo in one click."}, {n:"02", icon:"upload", title:"Post to your account", body:"Cut clips in TikTok/CapCut. Post them to your accounts with the tracked caption and sound."}, {n:"03", icon:"dollar", title:"Get paid Fridays", body:"Views roll in, earnings tick up. Request payouts to PayPal or bank — sent every Friday."}, ]; return (
HOW IT WORKS

Three steps between you and your first payout.

{steps.map(s => (
{s.n}

{s.title}

{s.body}

))}
); } window.HowItWorks = HowItWorks;