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

12 lines
533 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.
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>
);
}