feat: add base homepage

This commit is contained in:
2025-01-18 21:58:20 +01:00
parent 3abe88c7a2
commit 4f3a7b0cdd
3 changed files with 118 additions and 0 deletions

12
app/robots.ts Normal file
View File

@@ -0,0 +1,12 @@
import { MetadataRoute } from 'next';
export default function robots(): MetadataRoute.Robots {
return {
rules: [
{
userAgent: '*',
disallow: '/'
}
]
};
}