<?xml version="1.0" encoding="UTF-8"?>
<!--
  HO-286 — declare the canonical set of indexable pages so search engines
  consolidate every duplicate-content variant onto one specific URL.

  QA defect on live home-office.ai (HO-286): "The canonical URL is just
  'https://home-office.ai/', missing the specific page. This could cause
  duplicate content issues if other pages don't fix their own URLs."

  Every customer-facing page already self-canonicalises (the landing page
  to the bare origin, every other page to its extensionless route), and
  Cloudflare Pages 308-redirects the .html / trailing-slash variants. The
  one remaining gap was that nothing authoritatively listed the specific
  page set: unknown paths (e.g. /GALLERY) fall back 200 to index.html, so
  without a sitemap a crawler has no canonical inventory to consolidate
  against. /sitemap.xml used to 200 via that same SPA fallback (it served
  index.html, not a sitemap) — this real file replaces that.

  Only indexable pages belong here. login / dashboard / onboarding /
  health carry <meta name="robots" content="noindex"> and are excluded so
  the sitemap never advertises a page we ask crawlers not to index.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://home-office.ai/</loc>
    <changefreq>daily</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://home-office.ai/gallery</loc>
    <changefreq>daily</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://home-office.ai/ceo-report</loc>
    <changefreq>daily</changefreq>
    <priority>0.7</priority>
  </url>
  <url>
    <loc>https://home-office.ai/show-player</loc>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
  </url>
</urlset>
