<?xml version="1.0" encoding="UTF-8"?>
<!--
  This index used to submit ONLY sitemap-1.xml. That file lists 6,560 URLs, and
  6,555 of them do not resolve: the programmatic-SEO route patterns in App.tsx
  (/pos-for-:industry, /pos-:location, /:product-:location, /:feature-for-:industry)
  never match, because in react-router v6 a :param only binds after a "/". Every
  one of those URLs fell through to the single-segment /:feature catch-all and
  rendered "Feature not found". Submitting them fed Google 6,555 soft-404s.

  sitemap.xml now submits sitemap-main.xml, whose URLs were each checked against
  the real route table (react-router 6.30.2 matchRoutes over the <Route> list in
  src/App.tsx) and all resolve to a real page.

  sitemap-1.xml is left in place but is no longer referenced from here or from
  robots.txt. Do not re-add it until the SEO route patterns and the page
  templates are actually fixed.
-->
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap>
    <loc>https://karlpos.com/sitemap-main.xml</loc>
    <lastmod>2026-09-07</lastmod>
  </sitemap>
</sitemapindex>
