import { OddsLineMovementChart } from '@/components/OddsLineMovementChart'; const samples = [ { time: '12:00', bookmaker: 'Bet365', odds: 1.82 }, { time: '12:30', bookmaker: 'Bet365', odds: 1.79 }, { time: '13:00', bookmaker: 'Bet365', odds: 1.84 }, { time: '12:00', bookmaker: 'Pinnacle', odds: 1.8 }, { time: '12:30', bookmaker: 'Pinnacle', odds: 1.77 }, { time: '13:00', bookmaker: 'Pinnacle', odds: 1.85 }, { time: '12:00', bookmaker: 'DraftKings', odds: 1.83 }, { time: '12:30', bookmaker: 'DraftKings', odds: 1.81 }, { time: '13:00', bookmaker: 'DraftKings', odds: 1.8 }, ]; export default function OddsPage() { return (

跨平台賠率比較矩陣

此頁面接入後端 odds API 與 Redis 快取後,可顯示即時最高賠率、套利空間與賠率走勢線。

場次 Bet365 Pinnacle DraftKings 套利
德國 vs 西班牙 1.92 1.90 1.91
); }