meta: task ref cleanup

This commit is contained in:
2026-07-23 21:54:52 -04:00
parent 8e33af43a5
commit f2fc6a5d1a
63 changed files with 658 additions and 485 deletions

View File

@@ -19,7 +19,14 @@ export interface SitemapEntry {
/**
* Expected change frequency.
*/
changefreq: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never";
changefreq:
| "always"
| "hourly"
| "daily"
| "weekly"
| "monthly"
| "yearly"
| "never";
/**
* Relative priority (0.01.0).
@@ -31,7 +38,7 @@ export interface SitemapEntry {
* Per-site sitemap route definitions.
*
* Entries for subdomain pages (contact, privacy, downloads, etc.) are
* populated as those pages are built in tasks 0511.
* populated as those pages are built.
*/
export const SITEMAP_ROUTES: Record<SiteId, SitemapEntry[]> = {
main: [
@@ -44,7 +51,7 @@ export const SITEMAP_ROUTES: Record<SiteId, SitemapEntry[]> = {
],
// ── Subdomain sites ──────────────────────────────────────────────────
// Populated as pages land in tasks 0511.
// Populated as pages land.
nessa: [
{ path: "/", changefreq: "weekly", priority: 1.0 },