Files
2026FIFAWorldCup/platform/web/app/kelly/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

20 lines
918 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]"></h2>
<section className="panel-glow rounded-2xl p-5">
<p className="text-sm text-[#7a5b46]">
0.25x0.5x0.75x
調
</p>
<p className="mt-3 text-xs leading-5 text-[#8a6b58]">
</p>
</section>
<BetSizingSlider />
</div>
);
}