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