import Link from "next/link" import { getEventById } from "@/lib/mock-data" import { MatchDetailView } from "@/components/betting/match-detail-view" export default async function EventPage({ params }: { params: Promise<{ id: string }> }) { const { id } = await params const event = getEventById(id) if (!event) { return (
Match not found.
Back to home