import { createFileRoute } from "@tanstack/react-router";
import type {} from "@tanstack/react-start";
import { SITE } from "@/lib/site";

export const Route = createFileRoute("/robots.txt")({
  server: {
    handlers: {
      GET: async () =>
        new Response(
          `User-agent: *\nAllow: /\n\nSitemap: ${SITE.url}/sitemap.xml\n`,
          { headers: { "Content-Type": "text/plain" } },
        ),
    },
  },
});
