add robots.txt

This commit is contained in:
miloschwartz
2025-09-28 16:43:42 -07:00
parent 8851156f23
commit be2b2c6c77

10
src/app/robots.ts Normal file
View File

@@ -0,0 +1,10 @@
import type { MetadataRoute } from "next";
export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: "*",
disallow: "/"
}
};
}