This commit is contained in:
Felix Schulze 2025-05-03 18:04:34 +02:00
parent 29e25d8755
commit 33bd93f56c
2 changed files with 14 additions and 0 deletions

13
src/app/sitemap.ts Normal file
View File

@ -0,0 +1,13 @@
import { BASE_URL } from "@/lib/constants";
import { type MetadataRoute } from "next";
export default function sitemap(): MetadataRoute.Sitemap {
return [
{
url: BASE_URL,
lastModified: new Date(),
changeFrequency: "yearly",
priority: 1,
},
];
}

1
src/lib/constants.ts Normal file
View File

@ -0,0 +1 @@
export const BASE_URL = "https://investingfire.com/";