From be2b2c6c77cb94d2c66d810cf78453c531e8c0c8 Mon Sep 17 00:00:00 2001 From: miloschwartz Date: Sun, 28 Sep 2025 16:43:42 -0700 Subject: [PATCH] add robots.txt --- src/app/robots.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/app/robots.ts 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: "/" + } + }; +}