<?xml version="1.0" encoding="UTF-8"?>
<!--
  Root sitemap INDEX — the landing app owns /sitemap.xml.

  A true <sitemapindex> (sharded from day one, § 12.4): one submitted index
  auto-discovers every shard, so we no longer hand-submit each shard URL to
  Google Search Console. Shards:
    /sitemap-pages.xml   — landing marketing pages (this app)
    /news/sitemap.xml    — article shard (content app; the Cloudflare Worker
                           routes /news/* -> the content origin)
  Add a <sitemap> entry here as each new content surface launches.

  Static file (served from /public) rather than a Next route: the landing app
  is `output: 'export'` with `trailingSlash: true`, under which a static asset
  resolves at the exact path /sitemap.xml deterministically, and the index
  needs no per-build regeneration.
-->
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap>
    <loc>https://trycityscout.com/sitemap-pages.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://trycityscout.com/news/sitemap.xml</loc>
  </sitemap>
</sitemapindex>
