<?xml version="1.0" encoding="UTF-8"?>
<!--
  Static sitemap index for crawlers (Google, Bing, etc.).

  Why static + why absolute URLs?
  ===============================
  The Kubernetes ingress in front of this app only proxies /api/* to the
  FastAPI backend; everything else falls through to the SPA. That means
  /sitemap.xml itself is served from this file, but the per-locale
  sitemaps it points to live under /api/sitemap-{locale}.xml so the
  backend can stream a DB-driven URL list.

  Google rejects sitemap-index entries with relative <loc> URLs (the
  protocol REQUIRES fully-qualified URLs), so we hardcode the production
  domain below. If you ever change the canonical domain, update this
  file AND the Sitemap: line in /app/frontend/public/robots.txt.

  Add a new <sitemap> entry whenever you launch a new locale (de, fr, …).
-->
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap><loc>https://toolorbit.ai/api/sitemap-en.xml</loc></sitemap>
  <sitemap><loc>https://toolorbit.ai/api/sitemap-dk.xml</loc></sitemap>
</sitemapindex>
