Centralize site metadata and social URLs for JSON-LD, expose llmstxt.org content and per-page .md routes for LLM crawlers, and refactor blog/FAQ/events pages with shared components. Co-authored-by: Cursor <cursoragent@cursor.com>
8 lines
210 B
TypeScript
8 lines
210 B
TypeScript
import { PRIVACY_MARKDOWN } from "@/lib/content/legalMarkdown";
|
|
|
|
export async function GET() {
|
|
return new Response(PRIVACY_MARKDOWN, {
|
|
headers: { "Content-Type": "text/markdown; charset=utf-8" },
|
|
});
|
|
}
|