const STEPS = [ { n: '01', title: 'Read a prop', body: 'Pick a sport. Find the player. Set the line. We grade it in seconds across forty-plus factors.', }, { n: '02', title: 'Read the grade', body: 'Letter grade. Projection. Confidence. Factor breakdown. Kill conditions. Alt line ladder. The whole picture.', }, { n: '03', title: 'Make the call', body: 'Take the prop, walk away, or shop the alt line. Either way, you decided with intelligence — not vibes.', }, ]; export default function HowItWorks() { return (

How it works.

Three steps. No tout picks. No black box.

{STEPS.map((s, i) => (
STEP {s.n}

{s.title}

{s.body}

))}
); }