moving
Some checks failed
Installer Smoke / installer-smoke (push) Has been cancelled

This commit is contained in:
Oleg Maslov
2026-09-02 10:10:29 +02:00
commit 0c3e2ead3b
3841 changed files with 970576 additions and 0 deletions

19
apps/www/app/robots.ts Normal file
View File

@@ -0,0 +1,19 @@
import type { MetadataRoute } from 'next';
/**
* Robots policy: index the marketing surface, keep auth/billing/internal
* design-QA routes out of the index. Served at /robots.txt by the App
* Router metadata convention.
*/
export default function robots(): MetadataRoute.Robots {
return {
rules: [
{
userAgent: '*',
allow: '/',
disallow: ['/account', '/sign-in', '/sign-up', '/design/', '/api/'],
},
],
sitemap: 'https://waggle-os.ai/sitemap.xml',
};
}