sitemap
This commit is contained in:
parent
29e25d8755
commit
33bd93f56c
13
src/app/sitemap.ts
Normal file
13
src/app/sitemap.ts
Normal 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
1
src/lib/constants.ts
Normal file
@ -0,0 +1 @@
|
||||
export const BASE_URL = "https://investingfire.com/";
|
Loading…
x
Reference in New Issue
Block a user