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,11 @@
export default function PaywallPage() {
return (
<div className="mx-auto mt-10 max-w-xl">
<section className="panel-glow rounded-2xl p-8 text-center">
<h2 className="dot-matrix text-2xl text-[#7d2a15]"></h2>
<p className="mt-3 text-sm text-[#6d4d39]"> PRO </p>
<button type="button" className="mt-6 rounded-full bg-[#b83822] px-6 py-2 text-white"></button>
</section>
</div>
);
}