<?xml version="1.0" encoding="UTF-8"?>
<!--
  ONE URL, BECAUSE THAT IS HOW MANY THIS SITE HAS.

  BallGOAT is a single-page app: every screen - the game, How to play,
  Privacy, Terms, Contact - is React state, not a route. There is no router
  in this codebase and no second address a crawler could ever land on. A
  sitemap that listed /privacy or /terms would be lying about what request
  a browser can actually make; the honest sitemap for a one-URL site has one
  URL in it.

  If the legal pages need their own indexable addresses later - a search
  result that opens straight to the privacy policy rather than the landing
  screen - that is a routing change (react-router, or Cloudflare Pages
  Functions serving each path), not a sitemap change, and this file grows
  a <url> entry for each new route on the day that ships.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://theballgoat.com/</loc>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>
</urlset>
