<?xml version="1.0" encoding="UTF-8"?>
<!--
  Static sitemap covering the public surface area of Mium.

  Phase 1 (this file) lists the evergreen marketing pages. The real catalog
  — every published marketplace cookbook (/c/:id), every saleable recipe
  (/r/:id), and every author with published books (/shop/author/:id) — should
  be served by a dynamic /sitemap-catalog.xml endpoint that queries Firestore
  for `status == "published"` and flips updatedAt into <lastmod>. Tracked as
  Phase 2 of the SEO work.

  When the dynamic sitemap ships, link both files from a sitemap index here
  rather than appending — keeping static and dynamic separate makes catalog
  changes invalidate only the catalog file's cache.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://getmium.com/</loc>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://getmium.com/shop</loc>
    <changefreq>daily</changefreq>
    <priority>0.9</priority>
  </url>
  <url>
    <loc>https://getmium.com/privacy.html</loc>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
  <url>
    <loc>https://getmium.com/terms.html</loc>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
</urlset>
