<?xml version="1.0" encoding="UTF-8"?>
<!--
  BROKEN sitemap — reproduces audit issue: sitemap_non_canonical
  These URLs all return 200 OK, but each page declares a DIFFERENT URL as its canonical
  via <link rel="canonical" href="...">.
  Audit tools fetch each URL, read the canonical tag, and flag the mismatch.

  Rule: a sitemap should only contain the canonical version of each URL.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

  <!-- ✅ CORRECT — URL is its own canonical -->
  <url><loc>https://robots-txt-lab.pages.dev/</loc></url>

  <!--
    ❌ NON-CANONICAL — colour variant: canonical is /product, not /product-red
    Page declares: <link rel="canonical" href="https://robots-txt-lab.pages.dev/product">
  -->
  <url><loc>https://robots-txt-lab.pages.dev/product-red</loc></url>

  <!--
    ❌ NON-CANONICAL — paginated page: canonical is /blog (page 1), not /blog-page-2
    Page declares: <link rel="canonical" href="https://robots-txt-lab.pages.dev/blog">
  -->
  <url><loc>https://robots-txt-lab.pages.dev/blog-page-2</loc></url>

  <!--
    ❌ NON-CANONICAL — print version: canonical is /article, not /print-version
    Page declares: <link rel="canonical" href="https://robots-txt-lab.pages.dev/article">
  -->
  <url><loc>https://robots-txt-lab.pages.dev/print-version</loc></url>

</urlset>
