import { type NextRequest, NextResponse } from "next/server" type Ctx = { params: Promise<{ id: string }> } export async function GET(_req: NextRequest, { params }: Ctx) { const { id } = await params const html = `
` return new NextResponse(html, { headers: { "Content-Type": "text/html; charset=utf-8" }, }) }