<?xml version="1.0" encoding="UTF-8"?>
<!--
  Sitemap = the list of pages you WANT Google to index.
  Before this fix https://argoapp.fr/sitemap.xml returned the homepage HTML with
  a 200 status (a "soft 404"), because the file did not exist and nginx fell back
  to the SPA. It now exists, so nginx serves it as real XML.

  Keep it in sync with the public routes in src/App.tsx and with the allow-list
  in nginx.conf (location @spa). Gated app routes must NEVER be added here.

  CHECK after deploy:
    curl -sSI https://argoapp.fr/sitemap.xml | grep -i content-type
    → content-type: application/xml
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <!-- Homepage: most important, changes often. -->
  <url>
    <loc>https://argoapp.fr/</loc>
    <lastmod>2026-09-10</lastmod>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>
  <!-- Second content page. EXAMPLE: it only makes sense here once its canonical
       points to itself (see SignalementPage.tsx). -->
  <url>
    <loc>https://argoapp.fr/signalement</loc>
    <lastmod>2026-09-10</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>
</urlset>
