import { ExclamationTriangleIcon } from "@radix-ui/react-icons"; import { prisma } from "@repo/db"; import { Error } from "_components/Error"; export default async function Page({ params }: { params: Promise<{ id: string }> }) { const { id } = await params; const penalty = await prisma.penalty.findUnique({ where: { id: Number(id), }, include: { User: true, CreatedUser: true, }, }); if (!penalty) return ; return (

Strafe #{penalty.id}

); }