Files
2026FIFAWorldCup/platform/web/app/deep-bet/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.2 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 DeepBetPage() {
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="/recommendation-readiness" className="rounded-full border border-[#d8b58c] bg-white/75 px-4 py-2 text-sm font-bold text-[#7d2a15]"></Link>
</div>
</section>
</div>
);
}