diff --git a/src/app/robots.ts b/src/app/robots.ts new file mode 100644 index 00000000..c206249d --- /dev/null +++ b/src/app/robots.ts @@ -0,0 +1,10 @@ +import type { MetadataRoute } from "next"; + +export default function robots(): MetadataRoute.Robots { + return { + rules: { + userAgent: "*", + disallow: "/" + } + }; +}