diff --git a/app/sitemap.ts b/app/sitemap.ts index 4b50170..c30feb7 100644 --- a/app/sitemap.ts +++ b/app/sitemap.ts @@ -16,6 +16,7 @@ export default async function sitemap(): Promise { { url: `${BASE_URL}/contact`, lastModified: new Date(), changeFrequency: "monthly" as const, priority: 0.3 }, { url: `${BASE_URL}/login`, lastModified: new Date(), changeFrequency: "monthly" as const, priority: 0.3 }, { url: `${BASE_URL}/signup`, lastModified: new Date(), changeFrequency: "monthly" as const, priority: 0.3 }, + { url: `${BASE_URL}/updates`, lastModified: new Date(), changeFrequency: "weekly" as const, priority: 0.5 }, ] try { diff --git a/lib/routes.ts b/lib/routes.ts index 6c887c5..6502de5 100644 --- a/lib/routes.ts +++ b/lib/routes.ts @@ -19,6 +19,10 @@ export const routes = [ title: "Devices", href: "/devices", }, + { + title: "Updates", + href: "/updates", + }, { title: "Contact", href: "/contact",