<?xml version="1.0" encoding="UTF-8"?>
<!--
  Sitemap-INDEX voor Findmino.
  Deze STATISCHE index wordt door de frontend static-server geserveerd op
  https://findmino.nl/sitemap.xml zodat Google's Search Console entry
  (die naar deze URL wijst) een valide XML respons krijgt.

  De sub-sitemaps zelf zijn DYNAMISCH (worden real-time gegenereerd door
  de FastAPI backend op /api/sitemap-*.xml) — die bevatten de actuele
  study/job/blog/wat-als slugs uit MongoDB.

  Waarom deze split? Emergent's Kubernetes-ingress routeert alleen /api/*
  naar de backend, dus dynamisch XML op root-niveau kan niet. Deze
  statische index + dynamische sub-sitemaps is de best-of-both-worlds.
-->
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap>
    <loc>https://findmino.nl/api/sitemap-static.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://findmino.nl/api/sitemap-studies.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://findmino.nl/api/sitemap-jobs.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://findmino.nl/api/sitemap-blogs.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://findmino.nl/api/sitemap-watals.xml</loc>
  </sitemap>
</sitemapindex>
