Ads.txt
This commit is contained in:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user