seo: add robots.ts with sitemap reference

This commit is contained in:
Zac Gaetano 2026-04-30 21:51:34 -04:00
parent 8f018cb187
commit 2af2486e90

14
src/app/robots.ts Normal file
View file

@ -0,0 +1,14 @@
import { MetadataRoute } from "next";
export default function robots(): MetadataRoute.Robots {
return {
rules: [
{
userAgent: "*",
allow: "/",
},
],
sitemap: "https://www.wilddragon.net/sitemap.xml",
host: "https://www.wilddragon.net",
};
}