<?xml version="1.0" encoding="UTF-8"?>
<!--
  Static sitemap stub.

  Lists only the fixed top-level routes — product, package and blog-post
  URLs depend on slugs the API resolves at runtime, so they are NOT in
  this file. Crawlers discover them organically via internal links from
  /products and /blog (which are listed below).

  When the backend exposes a dynamic /sitemap.xml endpoint that walks
  Products/Pages/Blog rows directly, swap robots.txt's `Sitemap:` line
  to point at it and remove this file.

  Replace `https://YOUR-DOMAIN` with the production origin (matches
  `VITE_SITE_URL` in the build env).
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://YOUR-DOMAIN/</loc>
    <changefreq>daily</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://YOUR-DOMAIN/products</loc>
    <changefreq>daily</changefreq>
    <priority>0.9</priority>
  </url>
  <url>
    <loc>https://YOUR-DOMAIN/blog</loc>
    <changefreq>weekly</changefreq>
    <priority>0.7</priority>
  </url>
  <url>
    <loc>https://YOUR-DOMAIN/about</loc>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>
  <url>
    <loc>https://YOUR-DOMAIN/contact</loc>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>
</urlset>
