From 284c268c3b533279ce76618a40a48e193885e381 Mon Sep 17 00:00:00 2001 From: Saqib Date: Wed, 5 Aug 2026 15:06:59 +0530 Subject: [PATCH 1/2] chore: trigger dev deploy workflow From 5d55580167f87f247d4e3f8221d75b24f714b7b5 Mon Sep 17 00:00:00 2001 From: Saqib Date: Wed, 5 Aug 2026 15:56:17 +0530 Subject: [PATCH 2/2] fix(sitemap): include about-us static page about-us already has full SEO metadata and JSON-LD but was never linked from the sitemap's static pages list. --- app/sitemap/main.xml/route.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/sitemap/main.xml/route.ts b/app/sitemap/main.xml/route.ts index cf004b4c..25a116a0 100644 --- a/app/sitemap/main.xml/route.ts +++ b/app/sitemap/main.xml/route.ts @@ -10,6 +10,7 @@ function generateStaticUrls(baseUrl: string): string { { path: '/collaboratives', priority: '0.8', changefreq: 'weekly' }, { path: '/publishers', priority: '0.7', changefreq: 'weekly' }, { path: '/sectors', priority: '0.7', changefreq: 'weekly' }, + { path: '/about-us', priority: '0.5', changefreq: 'monthly' }, ]; return staticPages