<?xml version="1.0" encoding="UTF-8"?>
<!--
  Only three URLs exist. The app itself has exactly one: RootNavigator passes no
  `linking` config to NavigationContainer, so react-navigation never reflects
  navigation state in the address bar and nothing below "/" is addressable.
  /about and /terms-of-service are static files (app/public/*.html), served
  extensionless by the CloudFront router function in infra/site.tf.

  /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/.

  Add entries here if real deep-linked routes ever land (a per-day blob page or
  public profile URLs would both be worth having).
-->
<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/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>
