<?xml version="1.0" encoding="UTF-8"?>
<!--
  Root sitemap-index served from cloutiq.net/sitemap.xml.

  Why this exists: Google Search Console (and every well-behaved crawler)
  fetches sitemap.xml from the SITE ROOT by convention. Our real sitemap is
  generated dynamically by FastAPI at /api/sitemap-index.xml (with per-country
  shards and DataFeed pointers). Without this file, hitting cloutiq.net/sitemap.xml
  falls through to the React SPA index.html — GSC rejects the HTML response.

  This static file redirects crawlers to the live backend sitemap-index, which
  in turn references every shard (main sitemap, country sitemaps, DataFeed
  sitemap). Google walks the chain and picks up every URL.

  Do NOT hand-edit the list of country shards here; that lives in the backend
  sitemap-index.xml and updates as new countries are added.
-->
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap>
    <loc>https://cloutiq.net/api/sitemap-index.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://cloutiq.net/api/sitemap.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://cloutiq.net/api/sitemap-datafeeds.xml</loc>
  </sitemap>
</sitemapindex>
