<?xml version="1.0" encoding="UTF-8"?>
<!--
  Only genuinely public routes belong here.

  The previous version listed /executive, /trading, /top-products and
  /inventory/browse, all four of which are <ProtectedRoute> in src/App.tsx, so
  it was advertising the authenticated application to search engines: every
  crawl of those URLs redirects to sign-in, which is a wasted crawl at best and
  a soft-404 signal at worst. It also omitted /product and /pricing, the two
  public pages a prospect is most likely to land on.

  /auth is public but has no search value and is deliberately excluded.
  Keep this in step with src/App.tsx whenever a public route is added.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://retailloom.app/</loc>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://retailloom.app/product</loc>
    <changefreq>weekly</changefreq>
    <priority>0.9</priority>
  </url>
  <url>
    <loc>https://retailloom.app/pricing</loc>
    <changefreq>weekly</changefreq>
    <priority>0.9</priority>
  </url>
</urlset>
