chore: implement critical SEO enhancements (sitemap, robots, layout metadata, schema)

This commit is contained in:
mstfyldz
2026-05-30 19:59:48 +03:00
parent 38e823dff0
commit 9daad48a4d
3 changed files with 112 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { MetadataRoute } from 'next';
export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: '*',
allow: '/',
disallow: ['/admin/'],
},
sitemap: 'https://ayris.tech/sitemap.xml',
};
}