first commit

This commit is contained in:
Puechberty Arthur
2026-03-30 23:07:36 +02:00
commit 49fd31f4db
36 changed files with 30532 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import type { MetadataRoute } from 'next';
export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: '*',
allow: '/',
disallow: ['/api/'],
},
sitemap: 'https://moon.arthurp.fr/sitemap.xml',
host: 'https://moon.arthurp.fr',
};
}