Some checks failed
Deploy to Cloudflare Workers / deploy (push) Has been cancelled
18 lines
678 B
TypeScript
18 lines
678 B
TypeScript
import { GlassCard } from "@/components/ui/glass-card";
|
|
|
|
export default function PlayoffsPage() {
|
|
return (
|
|
<div className="space-y-6">
|
|
<h1 className="text-2xl font-bold">Champions League playoffs</h1>
|
|
<GlassCard highlight>
|
|
<p className="text-sm text-[var(--color-muted)]">
|
|
End-of-season qualification playoffs activate when the competition
|
|
status is set to <strong className="text-foreground">playoffs</strong>{" "}
|
|
after all league matches are completed. Top teams auto-qualify per
|
|
league rules; remaining teams play in for the final CL spots.
|
|
</p>
|
|
</GlassCard>
|
|
</div>
|
|
);
|
|
}
|