Files
2026FIFAWorldCup/platform/web/app/sharp-money/page.tsx
QuantBot aa7e3bba76
Some checks failed
2026 World Cup Quant Platform - Production Deployment / Code Quality & Testing (push) Failing after 1m49s
2026 World Cup Quant Platform - Production Deployment / Deploy to Production VM via Rsync (push) Has been skipped
chore: migrate deployment to Gitea Actions with zero-trust rsync
2026-06-16 19:06:50 +08:00

41 lines
2.3 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.
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>
);
}