/** * Hero visual: an order-book depth ladder filling up, pure SVG animation. * Bids in mint grow from the right, asks in white grow from the left, * meeting around the spread line. */ const BIDS = [86, 64, 74, 52, 60, 42, 30]; const ASKS = [80, 58, 68, 48, 54, 38, 26]; export function DepthLadder() { return ( {/* spread line */} {BIDS.map((w, i) => { const y = 24 + i * 50; const bid = w * 2; const ask = ASKS[i] * 2; return ( ); })} {/* price tick riding the spread */} ); }