<?xml version="1.0" encoding="UTF-8"?>
<!--
  The four indexable pages. There was no sitemap at all before this file, and no `Sitemap:`
  line in robots.txt — combined with zero inbound links from noesion.ai, that left a
  fresh subdomain with no discovery path whatsoever. A `site:` search returned nothing.

  STATIC, AND STILL DELIBERATELY SO. The obvious thing to want here is one <url> per
  /i/{itemId} story. `GET /api/items` now makes that possible — but a build-time fetch would
  make every deploy depend on the API being reachable, and would freeze the list at build
  time on a site whose stories arrive weekly. /news is listed instead: it links every story,
  is one hop from the footer of every page, and stays correct without a redeploy.

  A generated per-story sitemap is still the better answer once there are enough stories to
  warrant it, and it wants a server route reading the same endpoint at request time rather
  than a build step. Not yet worth it.

  `lastmod` is hand-maintained because these five pages change about never — /news changes
  constantly, but its <changefreq> carries that, and a lastmod nobody updates is worse than
  one a crawler ignores.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://radar.noesion.ai/</loc>
    <lastmod>2026-08-16</lastmod>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://radar.noesion.ai/news</loc>
    <lastmod>2026-08-16</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.9</priority>
  </url>
  <url>
    <loc>https://radar.noesion.ai/privacy</loc>
    <lastmod>2026-08-16</lastmod>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
  <url>
    <loc>https://radar.noesion.ai/terms</loc>
    <lastmod>2026-08-16</lastmod>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
  <url>
    <loc>https://radar.noesion.ai/legal</loc>
    <lastmod>2026-08-16</lastmod>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
</urlset>
