<?xml version="1.0" encoding="UTF-8"?>
<!--
  Chromolume.io sitemap — submitted via robots.txt → Sitemap directive.
  Per Google's SEO Starter Guide: a sitemap is a file that contains all the
  URLs on your site that you care about. Crawlers find this file via the
  Sitemap line in robots.txt and use it to discover content.

  Maintenance: when adding a new blog post, append a <url> block AND
  update the metadata in src/blog/posts.ts. The two MUST stay in sync —
  the sitemap drives discovery, the React route serves the rendered page.

  changefreq + priority are advisory only (Google largely ignores them) but
  lastmod is respected and helps the crawler re-fetch updated pages quickly.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

  <!-- Homepage — the live dashboard, updates weekly with new grosses -->
  <url>
    <loc>https://chromolume.io/</loc>
    <lastmod>2026-05-09</lastmod>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>

  <!-- ── BLOG ───────────────────────────────────────────────────────────── -->
  <!-- Archive landing page -->
  <url>
    <loc>https://chromolume.io/blog</loc>
    <lastmod>2026-05-09</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.9</priority>
  </url>

  <!-- Individual issues — newest first.
       Commission No. 1 = April 19, 2026 (the first official issue). -->
  <url>
    <loc>https://chromolume.io/blog/composite-may-3-2026</loc>
    <lastmod>2026-05-08</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://chromolume.io/blog/composite-april-26-2026</loc>
    <lastmod>2026-04-30</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.7</priority>
  </url>
  <url>
    <loc>https://chromolume.io/blog/composite-april-19-2026</loc>
    <lastmod>2026-04-28</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.7</priority>
  </url>

  <!-- ── LEGAL ──────────────────────────────────────────────────────────── -->
  <url>
    <loc>https://chromolume.io/terms</loc>
    <lastmod>2026-04-01</lastmod>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
  <url>
    <loc>https://chromolume.io/privacy</loc>
    <lastmod>2026-04-01</lastmod>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>

</urlset>
