Files
2026FIFAWorldCup/platform/web/app/deep-bet/page.tsx

28 lines
1.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 { 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>
);
}