import { buildHomeMarkdown } from "@/lib/llms"; export const revalidate = 300; export async function GET() { const body = await buildHomeMarkdown(); return new Response(body, { headers: { "Content-Type": "text/markdown; charset=utf-8" }, }); }