chore(web): add robots.txt

This commit is contained in:
Aman Varshney
2025-08-13 19:45:59 +05:30
parent 43432d7c27
commit bb40d510ed
2 changed files with 4 additions and 14 deletions

View File

@@ -0,0 +1,4 @@
User-agent: *
Allow: /
Sitemap: https://better-t-stack.dev/sitemap.xml

View File

@@ -1,14 +0,0 @@
export const dynamic = "force-static";
import type { MetadataRoute } from "next";
export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: "*",
allow: "/",
disallow: "/private/",
},
sitemap: "https://better-t-stack.dev/sitemap.xml",
};
}