/* global React, Eyebrow */ const CAPS = [ { title: 'Multi-Exchange', body: '48 connectors: crypto CEX/DEX, stocks, forex, prediction markets.' }, { title: 'Real-Time Data', body: 'WebSocket streams with <1ms processing latency.' }, { title: '480+ Indicators', body: '22 categories: momentum, volatility, Kalman, chaos, regression, signal processing.' }, { title: 'Custom Layouts', body: 'Split panels, multiple windows, persistent presets.' }, { title: 'Alert System', body: 'Price alerts with Telegram delivery.' }, { title: 'API Access', body: 'Local agent API for algorithmic trading integration.' }, ]; const CapCard = ({ title, body }) => { const [hover, setHover] = React.useState(false); return (
setHover(true)} onMouseLeave={() => setHover(false)} style={{ position: 'relative', background: hover ? 'rgba(33,88,164,0.08)' : 'rgba(33,88,164,0.04)', border: `1px solid ${hover ? 'rgba(33,88,164,0.25)' : 'rgba(254,255,238,0.07)'}`, borderRadius: 10, padding: '28px 16px 20px', transition: 'border-color .2s, background .2s', }} >

{title}

{body}

); }; const Capabilities = () => (
Capabilities

Everything you need

{CAPS.map((c) => )}
); window.Capabilities = Capabilities;