This commit is contained in:
2026-08-03 10:27:15 +02:00
parent d8aba6925f
commit 8cf2ce1b21
10 changed files with 386 additions and 7 deletions

View File

@@ -1,5 +1,6 @@
import type { MetadataRoute } from "next";
import { TOOL_PAGES } from "@/lib/tool-pages";
import { GUIDES } from "@/lib/guides";
const SITE_URL = "https://entscheidomat.com";
@@ -17,6 +18,24 @@ export default function sitemap(): MetadataRoute.Sitemap {
changeFrequency: "monthly" as const,
priority: 0.8,
})),
{
url: `${SITE_URL}/ratgeber`,
lastModified: "2026-08-03",
changeFrequency: "weekly" as const,
priority: 0.8,
},
...GUIDES.map((guide) => ({
url: `${SITE_URL}/ratgeber/${guide.slug}`,
lastModified: "2026-08-03",
changeFrequency: "monthly" as const,
priority: 0.7,
})),
{
url: `${SITE_URL}/ueber-uns`,
lastModified: "2026-08-03",
changeFrequency: "yearly" as const,
priority: 0.4,
},
{
url: `${SITE_URL}/developer`,
lastModified: "2026-08-01",