Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,14 @@ const nextConfig: NextConfig = {
destination: '/insights/:path*',
permanent: true,
},
// The impact dashboard shipped first as an unlisted, non-indexed preview
// at a cryptic slug (#98). It's now a public, discoverable /impact page,
// so send anyone holding the old preview link to the live route.
{
source: '/impact-preview-eb61fba1b98e/',
destination: '/impact/',
permanent: true,
},
]
},
}
Expand Down
148 changes: 0 additions & 148 deletions src/app/impact-preview-eb61fba1b98e/page.tsx

This file was deleted.

1 change: 1 addition & 0 deletions src/app/sitemap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export default function sitemap(): MetadataRoute.Sitemap {
{ url: url(''), changeFrequency: 'weekly', priority: 1 },
{ url: url('about'), changeFrequency: 'monthly', priority: 0.7 },
{ url: url('areas'), changeFrequency: 'monthly', priority: 0.8 },
{ url: url('impact'), changeFrequency: 'weekly', priority: 0.8 },
{ url: url('insights'), changeFrequency: 'weekly', priority: 0.8 },
{ url: url('authors'), changeFrequency: 'weekly', priority: 0.7 },
{ url: url('publications'), changeFrequency: 'weekly', priority: 0.8 },
Expand Down