<?xml version="1.0" encoding="UTF-8"?>
<!--
  MAYN sitemap — the public, indexable pages, and only those.

  Curated by hand rather than generated from pages.config.js: most routes in
  that file are admin, account, or transactional surfaces that must never be
  advertised to a crawler, and a generator that walked it would need a denylist
  anyway. src/lib/sitemap.test.js guards this file instead — it fails if a URL
  here is disallowed by robots.txt, points at a route that no longer exists, is
  duplicated, or isn't absolute.

  Casing is lowercase because that is what createPageUrl() produces
  (src/utils/index.ts), so it matches every internal link on the site. The
  router also answers the PascalCase spelling; listing one form keeps crawlers
  from treating the two as separate pages.

  Deliberately absent:
    /videoplayer, /myaccount, /redeemgift, /giftconfirmation, admin, manage
        — disallowed in robots.txt; behind sign-in and worthless in search.
    /productdetail  — a template that needs a product id; the bare URL is empty.
    /referfriend    — a personal tool. Signed out it only prompts to log in,
                      and indexing it risks surfacing someone's referral code.
    /privacypolicy, /termsofservice
        — cut deliberately 8/23/26 (Austin). They are linked from the footer of
          every page, so crawlers find them regardless; a sitemap entry adds no
          discovery and they are not pages we want to surface as search results.
    /heropreview, /heroscroll
        — retired 8/22/26 (#676); they return 410 Gone via api/gone.js.

  No <lastmod>, <changefreq> or <priority>: Google ignores the latter two, and a
  hardcoded lastmod in a static file becomes a lie the first time a page changes.
  An accurate lastmod would have to be generated at build time — worth doing if
  the catalog ever grows, not worth faking now.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url><loc>https://maynstage.app/</loc></url>
  <url><loc>https://maynstage.app/join</loc></url>
  <url><loc>https://maynstage.app/training</loc></url>
  <url><loc>https://maynstage.app/store</loc></url>
  <url><loc>https://maynstage.app/info</loc></url>
  <url><loc>https://maynstage.app/gift</loc></url>
</urlset>
