import { TERMS_MARKDOWN } from "@/lib/content/legalMarkdown"; export async function GET() { return new Response(TERMS_MARKDOWN, { headers: { "Content-Type": "text/markdown; charset=utf-8" }, }); }