23 lines
934 B
TypeScript
23 lines
934 B
TypeScript
'use client';
|
||
|
||
import React from 'react';
|
||
|
||
export default function LeaderboardBoard() {
|
||
return (
|
||
<div className="w-full bg-stone-900 p-6 rounded-lg border border-stone-700 shadow-xl">
|
||
<div className="mb-6">
|
||
<h2 className="text-2xl text-stone-100 font-dotmatrix uppercase font-bold tracking-wider border-b border-stone-700 pb-2">
|
||
量化跟單排行榜
|
||
</h2>
|
||
<p className="text-stone-400 text-sm mt-1">
|
||
尚未接入真實、可審計的投注帳本與收盤價差資料前,不顯示模擬高手、不提供一鍵跟單。
|
||
</p>
|
||
</div>
|
||
|
||
<div className="rounded-lg border border-stone-700 bg-stone-950/70 p-4 text-sm leading-6 text-stone-300">
|
||
等待資料:已結算注單、下注時間、進場賠率、收盤賠率、收盤價差、報酬率、最大回撤與風險分層。資料未齊前,本模組維持關閉。
|
||
</div>
|
||
</div>
|
||
);
|
||
}
|