From f6f79e20a7eb20dc2c49353c5ede77db4fc24c81 Mon Sep 17 00:00:00 2001 From: mihna123 Date: Tue, 9 Jun 2026 00:22:07 +0200 Subject: feat: add robots.txt file --- src/app/robots.ts | 11 +++++++++++ 1 file changed, 11 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 0000000..4a2fe7a --- /dev/null +++ b/src/app/robots.ts @@ -0,0 +1,11 @@ +import type { MetadataRoute } from 'next'; + +export default function robots(): MetadataRoute.Robots { + return { + rules: { + userAgent: '*', + allow: '/', + }, + sitemap: 'https://free-invoices.org/sitemap.xml', + }; +} -- cgit v1.3.1