<?xml version="1.0" encoding="UTF-8"?>
<!--
  RootNavigator now carries a real `linking` config (app/src/navigation/
  RootNavigator.tsx), so the app has real, addressable routes - but only the
  four fixed tab paths belong here. /about and /terms-of-service are static
  files (app/public/*.html), served extensionless by the CloudFront router
  function in infra/site.tf; the tab paths are SPA routes the same function
  rewrites onto index.html (APP_PATHS in infra/site.tf).

  /u/:handle and /d/:drawingId are deliberately NOT listed: they are unbounded
  (one entry per user/drawing) and this is a static file with no build step
  generating it. They're still crawlable - robots.txt doesn't disallow them -
  search engines just have to find them by link rather than by sitemap.

  /terms-of-service stays indexable on purpose: App Store and Play review both
  expect a publicly reachable terms URL, and a noindex on it would be a strange
  signal for a document whose whole job is to be found.

  A privacy URL is required too, and is not here yet on purpose: the policy is
  still an unreviewed draft in app/drafts/privacy.html. Add its entry in the
  same change that promotes it into app/public/.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://squigglin.com/</loc>
    <changefreq>daily</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://squigglin.com/vote</loc>
    <changefreq>hourly</changefreq>
    <priority>0.9</priority>
  </url>
  <url>
    <loc>https://squigglin.com/leaderboard</loc>
    <changefreq>hourly</changefreq>
    <priority>0.7</priority>
  </url>
  <url>
    <loc>https://squigglin.com/hall-of-fame</loc>
    <changefreq>daily</changefreq>
    <priority>0.7</priority>
  </url>
  <url>
    <loc>https://squigglin.com/about</loc>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://squigglin.com/terms-of-service</loc>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
</urlset>
