SurfSense/surfsense_web/app/sitemap.ts

61 lines
1.3 KiB
TypeScript
Raw Normal View History

2025-07-27 10:05:37 -07:00
import type { MetadataRoute } from "next";
export default function sitemap(): MetadataRoute.Sitemap {
2025-07-27 10:05:37 -07:00
return [
{
2025-09-30 23:05:12 -07:00
url: "https://www.surfsense.com/",
2025-07-27 10:05:37 -07:00
lastModified: new Date(),
changeFrequency: "yearly",
priority: 1,
},
{
2025-09-30 23:05:12 -07:00
url: "https://www.surfsense.com/contact",
lastModified: new Date(),
changeFrequency: "yearly",
priority: 1,
},
2025-10-02 18:13:30 -07:00
{
url: "https://www.surfsense.com/pricing",
lastModified: new Date(),
changeFrequency: "yearly",
priority: 0.9,
},
2025-09-30 23:05:12 -07:00
{
url: "https://www.surfsense.com/privacy",
2025-07-27 10:05:37 -07:00
lastModified: new Date(),
changeFrequency: "monthly",
priority: 0.9,
},
{
2025-09-30 23:05:12 -07:00
url: "https://www.surfsense.com/terms",
2025-07-27 10:05:37 -07:00
lastModified: new Date(),
changeFrequency: "monthly",
priority: 0.9,
},
{
2025-09-30 23:05:12 -07:00
url: "https://www.surfsense.com/docs",
2025-07-27 10:05:37 -07:00
lastModified: new Date(),
changeFrequency: "weekly",
priority: 0.9,
},
{
2025-09-30 23:05:12 -07:00
url: "https://www.surfsense.com/docs/installation",
2025-07-27 10:05:37 -07:00
lastModified: new Date(),
changeFrequency: "weekly",
priority: 0.9,
},
{
2025-09-30 23:05:12 -07:00
url: "https://www.surfsense.com/docs/docker-installation",
2025-07-27 10:05:37 -07:00
lastModified: new Date(),
changeFrequency: "weekly",
priority: 0.9,
},
{
2025-09-30 23:05:12 -07:00
url: "https://www.surfsense.com/docs/manual-installation",
2025-07-27 10:05:37 -07:00
lastModified: new Date(),
changeFrequency: "weekly",
priority: 0.9,
},
];
}