<?xml version="1.0" encoding="UTF-8"?>
<!--
  Static routes only.

  Product URLs are NOT listed here. az_products is edited from /admin/products,
  so products appear and disappear with no commit, and a hand-maintained list
  cannot keep up: this file once advertised /products/placeholder-app-one and
  its sibling, neither of which ever had a row, while omitting six products
  that did exist.

  supabase/functions/product-sitemap generates that list from az_products on
  every request, and public/robots.txt points crawlers at it. Blog posts work
  the same way via supabase/functions/blog-sitemap. Add a product URL here only
  if it has no az_products row at all.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://acme.zone/</loc>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://acme.zone/products</loc>
    <changefreq>weekly</changefreq>
    <priority>0.9</priority>
  </url>
  <url>
    <loc>https://acme.zone/blog</loc>
    <changefreq>daily</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://acme.zone/contact</loc>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>
</urlset>
