feat: better metadata, robots, and sitemap; simplify layout w/ AnimatedTitle and I18nProvider components

This commit is contained in:
Aidan 2025-08-04 02:27:38 -04:00
parent a37938e8c7
commit 5dc930bcbb
5 changed files with 136 additions and 57 deletions

9
app/robots.ts Normal file
View file

@ -0,0 +1,9 @@
import type { MetadataRoute } from 'next'
export const robots: MetadataRoute.Robots = {
rules: {
userAgent: '*',
allow: '/',
},
sitemap: 'https://aidxn.cc/sitemap.xml',
}