import { getArenas } from '@/actions/arena' import { MatchScheduler } from '@/components/MatchScheduler' import Link from 'next/link' import { ChevronLeft } from 'lucide-react' export default async function SchedulePage() { const arenas = await getArenas() return (
Voltar para Partidas
) }