forked from Northgate-Systems/RemitX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsitemap.ts
More file actions
44 lines (42 loc) · 963 Bytes
/
Copy pathsitemap.ts
File metadata and controls
44 lines (42 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import type { MetadataRoute } from "next";
export default function sitemap(): MetadataRoute.Sitemap {
const baseUrl = "https://remitx.app";
return [
{
url: baseUrl,
lastModified: new Date(),
changeFrequency: "weekly",
priority: 1,
},
{
url: `${baseUrl}/login`,
lastModified: new Date(),
changeFrequency: "monthly",
priority: 0.8,
},
{
url: `${baseUrl}/legal/privacy`,
lastModified: new Date(),
changeFrequency: "yearly",
priority: 0.3,
},
{
url: `${baseUrl}/legal/terms`,
lastModified: new Date(),
changeFrequency: "yearly",
priority: 0.3,
},
{
url: `${baseUrl}/legal/compliance`,
lastModified: new Date(),
changeFrequency: "yearly",
priority: 0.3,
},
{
url: `${baseUrl}/legal/security`,
lastModified: new Date(),
changeFrequency: "yearly",
priority: 0.3,
},
];
}