From 6608963683e41a17fa973dce1a7216a327536467 Mon Sep 17 00:00:00 2001 From: ZGaetano Date: Thu, 30 Apr 2026 21:51:37 -0400 Subject: [PATCH] seo: add sitemap.ts --- src/app/sitemap.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/app/sitemap.ts diff --git a/src/app/sitemap.ts b/src/app/sitemap.ts new file mode 100644 index 0000000..7985774 --- /dev/null +++ b/src/app/sitemap.ts @@ -0,0 +1,12 @@ +import { MetadataRoute } from "next"; + +export default function sitemap(): MetadataRoute.Sitemap { + return [ + { + url: "https://www.wilddragon.net", + lastModified: new Date(), + changeFrequency: "monthly", + priority: 1, + }, + ]; +}