Files
2026FIFAWorldCup/platform/web/app/models/page.tsx

47 lines
2.8 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
export default function ModelsPage() {
const modules = [
{ href: '/ml-edge', label: 'ML Ensemble 預測', desc: '自建模型 + ML Edge 比較,與莊家隱含機率對齊' },
{ href: '/match-conditions', label: '裁判/氣候影響模型', desc: '裁判嚴厲度、熱指數、海拔對 2H 下半場模型修正' },
{ href: '/rlm', label: 'RLM 反向盤口', desc: '票數/資金偏移與賠率異常走勢即時警示' },
{ href: '/proof-of-yield', label: 'Proof of Yield', desc: '交易明細公開帳本,量化 CLV 與資金曲線' },
{ href: '/props', label: '球員道具盤', desc: 'Player Props、雷達圖、Top Edge 提示' },
{ href: '/kelly', label: '凱利準則', desc: 'Kelly Fraction 與下注額建議' },
{ href: '/backtesting', label: '策略回測', desc: '動態條件、ROI 與 Equity Curve' },
{ href: '/deep-bet', label: '一鍵投注導向', desc: 'Deep Linking 進階下注導流' },
];
return (
<div className="space-y-4">
<h2 className="dot-matrix text-2xl text-[#7d2a15]"></h2>
<section className="panel-glow rounded-2xl p-5">
<p className="text-sm text-[#7a5b46]"> 1~14 </p>
<div className="mt-4 grid gap-3 md:grid-cols-2">
{modules.map((module) => (
<article key={module.href} className="rounded-xl border border-[#dbbea0] bg-white/70 p-4">
<h3 className="text-lg font-semibold text-[#7e3b1c]">{module.label}</h3>
<p className="mt-1 text-sm text-[#7a5b46]">{module.desc}</p>
<p className="mt-2 text-xs text-[#9b5d3d]">{module.href}</p>
</article>
))}
</div>
</section>
<section className="grid gap-4 md:grid-cols-3">
<article className="panel-glow rounded-2xl p-4">
<h3 className="text-lg font-semibold text-[#7e3b1c]"></h3>
<p className="mt-2 text-sm text-[#7a5b46]">/ λ</p>
</article>
<article className="panel-glow rounded-2xl p-4">
<h3 className="text-lg font-semibold text-[#7e3b1c]"></h3>
<p className="mt-2 text-sm text-[#7a5b46]"></p>
</article>
<article className="panel-glow rounded-2xl p-4">
<h3 className="text-lg font-semibold text-[#7e3b1c]">EV </h3>
<p className="mt-2 text-sm text-[#7a5b46]"></p>
</article>
</section>
</div>
);
}