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

17 lines
670 B
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 { BetSizingSlider } from '@/components/BetSizingSlider';
export default function KellyPage() {
return (
<div className="space-y-4">
<h2 className="dot-matrix text-2xl text-[#7d2a15]">Kelly Criterion</h2>
<section className="panel-glow rounded-2xl p-5">
<p className="text-sm text-[#7a5b46]">
0.25x0.5x0.75x
調
</p>
</section>
<BetSizingSlider />
</div>
);
}