20 lines
403 B
TypeScript
20 lines
403 B
TypeScript
import type { MetadataRoute } from "next";
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
const lastModified = new Date();
|
|
|
|
return [
|
|
{
|
|
url: "https://novarix.uk",
|
|
lastModified,
|
|
changeFrequency: "monthly",
|
|
priority: 1,
|
|
},
|
|
{
|
|
url: "https://novarix.uk/cookies",
|
|
lastModified,
|
|
changeFrequency: "yearly",
|
|
priority: 0.3,
|
|
},
|
|
];
|
|
} |