<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <!--
    Eventism sitemap index — top-level entry point for every crawler.

    Two layers of safety:
      * /sitemap-static.xml is shipped as a STATIC FILE in this same /public
        directory, so even if the FastAPI backend or its ingress route ever
        flake out, the homepage + core landing pages + city pages are still
        crawlable. This is the safety net.
      * /api/sitemap-*.xml are LIVE, generated from MongoDB on every request,
        so Google sees current events / services / venues / blog posts.

    Each <sitemap> entry gets <lastmod>=today on serve time of the dynamic
    parent (/api/sitemap.xml). We use a daily stamp here because this static
    file changes only when we add a new segment.
  -->
  <sitemap>
    <loc>https://eventism.com/sitemap-static.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://eventism.com/api/sitemap-static.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://eventism.com/api/sitemap-events.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://eventism.com/api/sitemap-services.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://eventism.com/api/sitemap-venues.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://eventism.com/api/sitemap-blog.xml</loc>
  </sitemap>
</sitemapindex>
