import { db } from "@/lib/db"; import Link from "next/link"; import RoundForm from "./RoundForm"; import ActivateRoundButton from "./ActivateRoundButton"; export default async function AdminRoundsPage() { const rounds = await db.round.findMany({ orderBy: { number: "asc" }, include: { _count: { select: { matches: true } } }, }); return (
هنوز دوری ثبت نشده
}