diff --git a/app/robots.ts b/app/robots.ts new file mode 100644 index 0000000..4036d2f --- /dev/null +++ b/app/robots.ts @@ -0,0 +1,12 @@ +import { MetadataRoute } from 'next' + +export default function robots(): MetadataRoute.Robots { + return { + rules: { + userAgent: '*', + allow: '/', + disallow: '/private/', + }, + sitemap: 'https://ryanfreeman.dev/sitemap.xml', + } +} \ No newline at end of file