<?xml version="1.0" encoding="UTF-8"?>
<!--
  Static sitemap. Hand-maintained for now — we have ~6 routes,
  a build-time generator would be overkill.

  Why a hand-written XML rather than vite-plugin-sitemap:
   - The set of pages is small and stable; an autogenerated
     file would walk the same handful of routes anyway.
   - The tool sub-pages (`/tools/json` etc.) are code-split
     chunks that live under the same parent; Google indexes
     them naturally once we link to them from `/tools` and
     from this sitemap as a single /tools entry.
   - Keeping the priority/changeFreq values here is easier
     than threading them through Vite plugin options.
  Last updated is bumped manually on each release.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://htester.com/</loc>
    <lastmod>2026-08-26</lastmod>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://htester.com/tools</loc>
    <lastmod>2026-08-26</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.9</priority>
  </url>
  <url>
    <loc>https://htester.com/clock</loc>
    <lastmod>2026-08-26</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.6</priority>
  </url>
  <url>
    <loc>https://htester.com/emulator</loc>
    <lastmod>2026-08-26</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
</urlset>
