Initial commit with 2026 World Cup Quant Platform core modules and CI/CD
This commit is contained in:
16
platform/web/app/sharp-money/page.tsx
Normal file
16
platform/web/app/sharp-money/page.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import { MoneyFlowBar } from '@/components/MoneyFlowBar';
|
||||
|
||||
export default function SharpMoneyPage() {
|
||||
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]">示意:當投注筆數與投注金額走向反向時,提示 Sharp Money 可能存在。</p>
|
||||
<div className="mt-4 grid gap-3 md:grid-cols-2">
|
||||
<MoneyFlowBar label="德國 vs 西班牙" ticketPct={73} handlePct={35} />
|
||||
<MoneyFlowBar label="巴西 vs 法國" ticketPct={42} handlePct={72} />
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user