41 lines
2.3 KiB
TypeScript
41 lines
2.3 KiB
TypeScript
import Link from 'next/link';
|
||
|
||
export default function SharpMoneyPage() {
|
||
return (
|
||
<div className="space-y-5">
|
||
<section className="panel-glow rounded-2xl p-6">
|
||
<p className="dot-matrix text-xs font-bold text-[#b83822]">進階資料頁 / 尚未接入正式資金流</p>
|
||
<h2 className="mt-2 text-3xl font-black text-[#3f2f25]">資金流向追蹤</h2>
|
||
<p className="mt-3 text-sm leading-7 text-[#7a5b46]">
|
||
這頁未來會顯示「投注人數比例」與「投注金額比例」的差異,用來判斷市場是否出現大額資金偏向。正式環境不得用示意賽事冒充資金流,因此在授權資料源接入前,只保留狀態說明與下一步。
|
||
</p>
|
||
</section>
|
||
|
||
<section className="grid gap-4 md:grid-cols-3">
|
||
{[
|
||
['目前狀態', '等待可驗證資金流資料源', '不顯示假票數、不顯示假資金比例。'],
|
||
['現在該看', '每日作戰室與盤口覆蓋', '先以賠率門檻、資料新鮮度與注碼上限決策。'],
|
||
['接入後會顯示', '票數、金額、異常移動時間', '只有同一場、同一玩法、同一選項才會比較。'],
|
||
].map(([title, value, detail]) => (
|
||
<article key={title} className="panel-glow rounded-2xl p-5">
|
||
<p className="text-xs font-bold text-[#8a6b58]">{title}</p>
|
||
<p className="mt-2 text-lg font-black text-[#7d2a15]">{value}</p>
|
||
<p className="mt-2 text-sm leading-6 text-[#7a5b46]">{detail}</p>
|
||
</article>
|
||
))}
|
||
</section>
|
||
|
||
<section className="panel-glow rounded-2xl p-5">
|
||
<h3 className="dot-matrix text-lg text-[#7d2a15]">下一步</h3>
|
||
<p className="mt-2 text-sm leading-6 text-[#7a5b46]">
|
||
若要下注前檢查,先到每日作戰室加入監控清單;若要確認目前玩法是否有足夠盤口,先看盤口覆蓋。
|
||
</p>
|
||
<div className="mt-4 flex flex-wrap gap-3">
|
||
<Link href="/daily-card" className="rounded-full bg-[#7d2a15] px-4 py-2 text-sm font-bold text-white">前往每日作戰室</Link>
|
||
<Link href="/market-coverage" className="rounded-full border border-[#d8b58c] bg-white/75 px-4 py-2 text-sm font-bold text-[#7d2a15]">檢查盤口覆蓋</Link>
|
||
</div>
|
||
</section>
|
||
</div>
|
||
);
|
||
}
|