Initial commit with 2026 World Cup Quant Platform core modules and CI/CD

This commit is contained in:
QuantBot
2026-06-13 23:18:18 +08:00
commit 073abf98c1
155 changed files with 19539 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
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>
);
}