<?xml version="1.0" encoding="UTF-8"?>
<!--
  #772 — Sprint 62. Lists only routes that are genuinely worth indexing.

  Included: the landing page (the whole marketing surface — hero, formats,
  commissioner table, scoring, agents, pricing tabs) plus /privacy and
  /terms, which are real, static, self-contained documents a crawler can
  read and a user can reasonably land on.

  Deliberately EXCLUDED: /login and /register. They are auth entry points
  with almost no unique content, they are not a useful search destination
  (nobody searches for a login form they can reach from the landing page),
  and listing them invites them to compete with "/" for the brand query.
  Also excluded, for the obvious reason: every authed route, /join/:code,
  the password-reset and email-verification routes, and anything else
  behind a redirect or bearing a one-time token.

  lastmod is the date the PAGE's content last actually changed, not the date
  this file was last touched. A sitemap whose lastmods are all identical (or
  all "today") is the classic tell for a generated-and-ignored sitemap, and
  Google's documented response is to discount the lastmod signal for the whole
  file — so a wrong date is worse than no date. "/" is 2026-07-28 (the #741
  landing copy rewrite); /privacy and /terms are 2026-07-19, when #207 created
  them — nothing since has changed a word of either, only their title/canonical
  hook. Update a date here when you edit the page's copy, and only then.

  What the gate actually enforces (tests/unit/seo-static-assets.test.ts):
  every page under src/client/pages/ that calls usePageMeta must appear in that
  test's PUBLIC_PAGES list, and every <loc> here must be a route some page in
  that list canonicalises. So adding a public page fails the gate until it is
  registered there, which is what forces an explicit include-or-exclude
  decision about this file. It does NOT auto-detect that a newly registered
  page is missing from this sitemap — that judgement is still yours, and the
  exclusions above are the standing precedent for making it.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://pooldit.com/</loc>
    <lastmod>2026-07-28</lastmod>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://pooldit.com/privacy</loc>
    <lastmod>2026-07-19</lastmod>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
  <url>
    <loc>https://pooldit.com/terms</loc>
    <lastmod>2026-07-19</lastmod>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
</urlset>
