From 9f63acfe2f5239bd75afcd5a10f28917e93c7160 Mon Sep 17 00:00:00 2001 From: isra el Date: Fri, 14 Mar 2025 19:01:53 +0300 Subject: [PATCH] chore(web): update sitemap --- web/app/sitemap.ts | 43 +++++++++++++++++++++++++------------------ 1 file changed, 25 insertions(+), 18 deletions(-) diff --git a/web/app/sitemap.ts b/web/app/sitemap.ts index 47d5a82..df3e305 100644 --- a/web/app/sitemap.ts +++ b/web/app/sitemap.ts @@ -22,6 +22,12 @@ export default function sitemap(): MetadataRoute.Sitemap { changeFrequency: 'monthly' as const, priority: 1, }, + { + url: `${baseUrl}#pricing`, + lastModified: new Date(), + changeFrequency: 'monthly' as const, + priority: 0.8, + }, { url: `${baseUrl}${Routes.login}`, lastModified: new Date(), @@ -46,12 +52,25 @@ export default function sitemap(): MetadataRoute.Sitemap { changeFrequency: 'monthly' as const, priority: 0.7, }, - // { - // url: `${baseUrl}/pricing`, - // lastModified: new Date(), - // changeFrequency: 'monthly' as const, - // priority: 0.8, - // }, + { + url: `${baseUrl}${Routes.privacyPolicy}`, + lastModified: new Date(), + changeFrequency: 'yearly' as const, + priority: 0.5, + }, + { + url: `${baseUrl}${Routes.termsOfService}`, + lastModified: new Date(), + changeFrequency: 'yearly' as const, + priority: 0.5, + }, + { + url: `${baseUrl}${Routes.refundPolicy}`, + lastModified: new Date(), + changeFrequency: 'yearly' as const, + priority: 0.5, + }, + // { // url: `${baseUrl}/docs`, // lastModified: new Date(), @@ -64,18 +83,6 @@ export default function sitemap(): MetadataRoute.Sitemap { // changeFrequency: 'weekly' as const, // priority: 0.7, // }, - // { - // url: `${baseUrl}/privacy`, - // lastModified: new Date(), - // changeFrequency: 'yearly' as const, - // priority: 0.5, - // }, - // { - // url: `${baseUrl}/terms`, - // lastModified: new Date(), - // changeFrequency: 'yearly' as const, - // priority: 0.5, - // }, ] return routes