<?xml version="1.0" encoding="UTF-8"?>
<!--
  Sitemap index — intentionally static and intentionally tiny.

  The static build is served for non-/api paths, so this file shadows the
  backend's GET /sitemap.xml route. It therefore cannot list booking pages
  itself: it would go stale the moment a shop signs up, which is exactly what
  happened before (lastmod stuck at 2026-05-18, zero /book/ URLs, none of the
  shops discoverable).

  Instead it delegates to /api/sitemap.xml. That path is under /api, so it
  always reaches the backend, where the URL list is generated from the live
  business table on every request.

  Add new static URLs in backend/src/index.ts (serveSitemap), not here.
-->
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap>
    <loc>https://www.kutcorner.com/api/sitemap.xml</loc>
  </sitemap>
</sitemapindex>
