<?xml version="1.0" encoding="UTF-8"?>
<!--
  ┌────────────────────────────────────────────────────────────────────┐
  │ MODULE_CONTRACT · sitemap.xml                                      │
  │ ## @purpose Declare the single root URL to search engines           │
  │ ## @scope   TASK-3 SEO/meta-пакет — static asset                    │
  │ ## @invariants                                                     │
  │   - Valid well-formed XML (parses via xmllint)                     │
  │   - Single <url>: https://tronyx.ru/ (SPA, one canonical page)     │
  │   - 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, tronyx   │
  │ STRUCTURE: ▶ urlset → ◇ url[loc+lastmod+changefreq+priority] → ⎋   │
  └────────────────────────────────────────────────────────────────────┘
-->
<!-- region URLSET -->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <!-- region URL_ROOT -->
  <url>
    <loc>https://tronyx.ru/</loc>
    <changefreq>monthly</changefreq>
    <priority>1.0</priority>
  </url>
  <!-- endregion URL_ROOT -->
</urlset>
<!-- endregion URLSET -->
