28 lines
1.3 KiB
TypeScript
28 lines
1.3 KiB
TypeScript
import { QuickBetButton } from '@/components/QuickBetButton';
|
||
|
||
export default function DeepBetPage() {
|
||
const matchId = 'FIFA2026-FR-PA03';
|
||
const selection = '德國勝';
|
||
return (
|
||
<div className="space-y-4">
|
||
<h2 className="dot-matrix text-2xl text-[#7d2a15]">一鍵投注深度連結(Deep Linking)</h2>
|
||
<section className="panel-glow rounded-2xl p-5">
|
||
<p className="text-sm text-[#7a5b46]">
|
||
根據比賽與下注口袋,產生各大博彩公司可直接帶入投注單的快速連結,含追蹤碼(Affiliate)與
|
||
即時金額提示。可直接跳轉至賠率已預選頁,減少下注落地時間。
|
||
</p>
|
||
</section>
|
||
|
||
<section className="panel-glow rounded-2xl p-5">
|
||
<h3 className="dot-matrix text-lg text-[#7d2a15]">場次</h3>
|
||
<p className="mt-2 text-sm text-[#7a5b46]">{matchId}|{selection}</p>
|
||
<div className="mt-4 flex flex-wrap gap-3">
|
||
<QuickBetButton bookmakerId="bet365" matchId={matchId} selection={selection} odds={1.92} />
|
||
<QuickBetButton bookmakerId="pinnacle" matchId={matchId} selection={selection} odds={1.94} />
|
||
<QuickBetButton bookmakerId="draftkings" matchId={matchId} selection={selection} odds={1.96} />
|
||
</div>
|
||
</section>
|
||
</div>
|
||
);
|
||
}
|