<?xml version="1.0" encoding="UTF-8"?>
<!--
  THE LAUNCHED SITE. Three urls: the homepage, the product page and the about
  page. Seven routes resolve; four of them are deliberately not listed here.

  ⚠️ THE FOUR LEGAL PAGES WERE REMOVED FROM THIS FILE ON 20 AUGUST 2026, and
  this note replaces the one that used to flag the problem as unsettled.

  They carry noindex: true in src/config/seo.ts, and listing a noindexed url in
  a sitemap is a contradictory signal: it asks Google to crawl a page it is
  simultaneously told not to index, which Search Console reports as an error.
  They were listed because section 5 of the pre-launch instruction said to list
  them. The founder has reversed that instruction herself.

  What changed is that every page now links to all four from the footer. While
  nothing linked to them, a sitemap entry was at least the only way a crawler
  would find them at all, so the contradiction bought something. Now it buys
  nothing: they are discoverable by link, the noindex still governs whether they
  are indexed, and the entry produces only the error.

  ⚠️ REMOVING A URL FROM HERE DOES NOT UNPUBLISH IT. All four still resolve,
  still prerender, and are still linked from the footer of every page.
  scripts/prerender.mjs takes its route list from src/App.tsx, not from this
  file; it reads this file only to fail the build when a url here is NOT a real
  route, which is how a renamed slug survived once. Deleting entries is safe in
  that direction. Adding one for a path that does not resolve is not.

  Every <loc> must be a real, indexable route in src/App.tsx. Indexable is the
  operative word: a route with noindex does not belong here.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

  <url>
    <loc>https://www.sanjeevaniai.com</loc>
    <lastmod>2026-08-20</lastmod>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>

  <url>
    <loc>https://www.sanjeevaniai.com/metris</loc>
    <lastmod>2026-08-20</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.9</priority>
  </url>

  <url>
    <loc>https://www.sanjeevaniai.com/about</loc>
    <lastmod>2026-08-20</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.6</priority>
  </url>

</urlset>
