<?xml version="1.0" encoding="UTF-8"?>
<!--
  Two entries, because there are two public pages.

  Everything that makes HouseChores useful — the board, invites, the admin
  surfaces — sits behind auth and must never be crawled. A sitemap listing
  routes a crawler cannot reach would be noise at best; `?join=CODE` links in
  particular must never appear here, since a listed invite code is an invite
  handed to the internet.

  This exists mainly because robots.txt already promised it. Advertising a
  sitemap that 404s is worse than advertising none.

  `/plus` is listed rather than `/plus.html`: the extensionless form is the one
  linked from the app and the one people would type, and `netlify.toml` serves
  the file from it. Listing both would be the same page twice.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://housechores.app/</loc>
    <changefreq>monthly</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://housechores.app/plus</loc>
    <changefreq>monthly</changefreq>
    <priority>0.7</priority>
  </url>
</urlset>
