Yaltopia-FIFA/app/(dashboard)/leagues/[leagueId]/competitions/[competitionId]/playoffs/page.tsx
Kirubel-Kibru-Yaltopia 89440985f1
Some checks failed
Deploy to Cloudflare Workers / deploy (push) Has been cancelled
x
2026-05-24 21:46:10 +03:00

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>
);
}