Added metadta filesa

This commit is contained in:
2025-06-27 14:49:00 +02:00
parent e4c382a4dc
commit f8515d61bc
6 changed files with 59 additions and 0 deletions

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

@@ -0,0 +1,11 @@
import type { MetadataRoute } from 'next'
export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: "*",
allow: ["/", "/r/"],
disallow: "/dashboard/",
}
}
}