<?xml version="1.0" encoding="UTF-8"?>
<!--
  The four routes a crawler can reach without an account.

  Business showcase pages (/businesses/:uid) are deliberately ABSENT. A static file
  cannot enumerate them, and emitting a handful would be worse than emitting none: a
  sitemap is read as the complete set, so a partial one tells Google the rest do not
  exist. Listing them needs a backend route that generates this document from the
  same subscription-gated query the directory uses — worth doing, not done here.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://teumon.co.il/</loc>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://teumon.co.il/businesses</loc>
    <changefreq>daily</changefreq>
    <priority>0.9</priority>
  </url>
  <url>
    <loc>https://teumon.co.il/new-business</loc>
    <changefreq>monthly</changefreq>
    <priority>0.7</priority>
  </url>
  <url>
    <loc>https://teumon.co.il/terms</loc>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
</urlset>
