import { NextResponse } from "next/server"; const HTML = ` Epicure API Docs
`; export async function GET() { return new NextResponse(HTML, { headers: { "Content-Type": "text/html; charset=utf-8" }, }); }