<?xml version="1.0" encoding="UTF-8"?>
<!--
  Deliberately short. Only the routes a signed-out visitor can actually see
  something on are listed.

  NOT listed, and why: /panchangam/YYYY-MM-DD is the genuinely valuable
  surface for search ("panchangam for 15 May 2026"), but this app is
  client-rendered, so every one of those URLs returns the identical HTML shell
  with the identical <title> and meta description until JavaScript runs.
  Submitting thousands of them would be submitting thousands of pages that are
  byte-identical to a crawler. Doing that properly needs prerendering or SSR
  for the date routes, which is real work with its own ticket rather than a
  line added to a sitemap.

  No <lastmod>: a hardcoded date in a static file is wrong the day after it is
  written, and a wrong lastmod is worse than none — it teaches crawlers to
  ignore the field.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://navapanchangam.com/</loc>
    <changefreq>daily</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://navapanchangam.com/calendar</loc>
    <changefreq>daily</changefreq>
    <priority>0.9</priority>
  </url>
  <url>
    <loc>https://navapanchangam.com/feeds</loc>
    <changefreq>weekly</changefreq>
    <priority>0.7</priority>
  </url>
  <url>
    <loc>https://navapanchangam.com/horoscope</loc>
    <changefreq>weekly</changefreq>
    <priority>0.7</priority>
  </url>
  <url>
    <loc>https://navapanchangam.com/methodology.html</loc>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>
  <url>
    <loc>https://navapanchangam.com/privacy.html</loc>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
</urlset>
