feat: SEO improvements — Twitter cards, canonical URL, sitemap, robots, llms.txt

Adds metadataBase, og:image, og:url, Twitter card tags, canonical
URL, sitemap.ts, robots.ts with AI crawler directives, and llms.txt.
This commit is contained in:
Vectry
2026-02-10 02:21:19 +00:00
parent 40d60b1ce6
commit de8b827562
4 changed files with 77 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import { MetadataRoute } from "next";
export default function sitemap(): MetadataRoute.Sitemap {
const baseUrl = "https://codeboard.vectry.tech";
return [
{ url: baseUrl, lastModified: new Date(), changeFrequency: "weekly", priority: 1.0 },
];
}