diff --git a/src/app/robots.ts b/src/app/robots.ts new file mode 100644 index 0000000..fc36947 --- /dev/null +++ b/src/app/robots.ts @@ -0,0 +1,13 @@ +import { MetadataRoute } from "next"; + +export const dynamic = "force-static"; + +export default function robots(): MetadataRoute.Robots { + return { + rules: { + userAgent: "*", + allow: "/", + }, + sitemap: "https://cur8d.dev/sitemap.xml", + }; +}