diff --git a/apps/web/next-seo.config.ts b/apps/web/next-seo.config.ts index 3c615c2..400d10a 100644 --- a/apps/web/next-seo.config.ts +++ b/apps/web/next-seo.config.ts @@ -19,10 +19,18 @@ export default { rel: "manifest", href: "/manifest.webmanifest", }, + { + rel: "robots", + href: "/robots.txt", + }, + { + rel: "sitemap", + href: "/sitemap.xml", + }, ], openGraph: { site_name: "LTX", - url: "https://ltx.st/", + url: "https://ltx.st", type: "website", locale: "en_IE", images: [ diff --git a/apps/web/src/app/sitemap.ts b/apps/web/src/app/sitemap.ts index a591aaa..988aa08 100644 --- a/apps/web/src/app/sitemap.ts +++ b/apps/web/src/app/sitemap.ts @@ -14,12 +14,6 @@ export default function sitemap(): MetadataRoute.Sitemap { changeFrequency: "yearly", priority: 0.8, }, - { - url: "https://ltx.st/create", - lastModified: new Date(), - changeFrequency: "monthly", - priority: 0.8, - }, { url: "https://ltx.st/about/privacy", lastModified: new Date(),