<?xml version="1.0" encoding="UTF-8"?>
<!--
  MyERPNetwork — Master Sitemap Index

  Root-path entry point for crawlers. The React static host owns this path
  (the platform ingress reserves only /api/* for the FastAPI backend), so
  we serve a plain sitemap index here that points at every category
  sitemap generated dynamically by the API.

  Each category endpoint auto-paginates at 50 000 URLs per Google's spec
  and produces its own <urlset>. When any category grows past 50 000, the
  API returns an additional file (e.g. /api/sitemap-profiles-2.xml). Those
  paginated files are advertised by the /api/sitemap.xml *index-of-indexes*
  (fetch that when you need the pagination-aware listing).

  Search engines can follow this file first — it lists exactly the six
  categories in a fixed, stable order:

    • sitemap-pages                — static + hub pages
    • sitemap-jobs                 — active job postings
    • sitemap-profiles             — public candidate profiles
    • sitemap-challenges           — challenges & day pages
    • sitemap-posts                — public feed posts
    • sitemap-interview-experiences — interview stories

  Cache: the underlying category sitemaps carry a 1-hour Cache-Control with
  stale-while-revalidate 24 h, so the crawler ecosystem sees near-realtime
  updates whenever a profile is written / made public / made private.
-->
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap>
    <loc>https://myerpnetwork.com/api/sitemap-pages.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://myerpnetwork.com/api/sitemap-jobs.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://myerpnetwork.com/api/sitemap-profiles.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://myerpnetwork.com/api/sitemap-challenges.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://myerpnetwork.com/api/sitemap-posts.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://myerpnetwork.com/api/sitemap-interview-experiences.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://myerpnetwork.com/api/sitemap-images.xml</loc>
  </sitemap>
</sitemapindex>
