<?xml version="1.0" encoding="UTF-8"?>
<!--
  ┌────────────────────────────────────────────────────────────────────┐
  │ MODULE_CONTRACT · sitemap.xml                                      │
  │ ## @purpose Declare the single root URL to search engines           │
  │ ## @scope   SEO/meta-пакет — static asset                          │
  │ ## @invariants                                                     │
  │   - Valid well-formed XML (parses via xmllint)                     │
  │   - Single <url>: https://botanika.tronyx.ru/ (SPA, one canonical) │
  │   - changefreq=monthly, priority=1.0 (primary/only entry)         │
  │ ## @rationale                                                      │
  │   Q: why priority=1.0 for the only URL?                            │
  │   A: relative priority — there is exactly one page, so it is the   │
  │      highest-priority (and only) entry on the site.                │
  │ GREP_SUMMARY: sitemap, seo, urlset, changefreq, priority, botanika │
  │ STRUCTURE: ▶ urlset → ◇ url[loc+changefreq+priority] → ⎋           │
  └────────────────────────────────────────────────────────────────────┘
-->
<!-- region URLSET -->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <!-- region URL_ROOT -->
  <url>
    <loc>https://botanika.tronyx.ru/</loc>
    <changefreq>monthly</changefreq>
    <priority>1.0</priority>
  </url>
  <!-- endregion URL_ROOT -->
</urlset>
<!-- endregion URLSET -->
