<?xml version="1.0" encoding="UTF-8"?>
<!--
  Nomtally — the four public routes.

  Hand-written on purpose. A sitemap module would add a dependency, a build
  step and a generated file to express four URLs that change only when somebody
  adds a page — which is also when they would edit this file. The application's
  own routes are absent because they are auth-walled and disallowed in
  robots.txt.

  The URLs below match what `useMarketingSeo` emits as each page's canonical:
  `NUXT_PUBLIC_SITE_URL` (default `https://nomtally.com`) joined with
  `app.baseURL`, which is now `/` — the app moved off its `/app/` prefix when
  nginx moved to `location /`. If either moves again, all three have to move
  together — this file, the env value, and the `Sitemap:` line in robots.txt —
  or the sitemap will advertise URLs that redirect, which is worse than none.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://nomtally.com/</loc>
    <changefreq>monthly</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://nomtally.com/features/logging</loc>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://nomtally.com/features/recipes</loc>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://nomtally.com/features/insights</loc>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>
</urlset>
