<?xml version="1.0" encoding="UTF-8"?>
<!--
  Public URLs only, and only URLs that are prerendered to real HTML.

  A sitemap is a claim that these pages exist and are worth fetching. Listing a
  page whose markup is an empty `<app-root>` is worse than listing nothing —
  that is exactly the state this file replaces, where `GET /sitemap.xml`
  returned 200 with 48 KB of `text/html` (the SPA shell) and would have been
  read as a malformed sitemap.

  Kept in step with the `RenderMode.Prerender` entries in
  `src/app/app.routes.server.ts`. If a route is added there, add it here.

  Deliberately absent:
    - `/login` — prerendered and crawlable, but a sign-in form is not a search
      result anybody wants; it is allowed in robots.txt and left out here.
    - `/video/free` — public and allowed in robots.txt, but still client
      rendered, so its raw HTML is the empty shell. See the note in
      `src/app/app.routes.server.ts` for what has to change first.
    - `/profile/…` — 1,199 real people. See the note in robots.txt; this is an
      open decision for the owner, not a default.
    - every signed-in route — `noindex` in the markup and disallowed in
      robots.txt.
    - `/members/birthday` — it was here until birthdays became a filter of the
      catalogue. The address still works (it redirects to
      `/members?filter=birthdays`), but a sitemap must not advertise a redirect,
      and the filtered view canonicalises to `/members`, which is listed.

  No `<lastmod>`, `<changefreq>` or `<priority>`. Google ignores the latter two
  outright, and a hand-maintained `lastmod` that stops being true is a negative
  signal — the competitive audit found one site still serving 2015 dates.
  Reintroduce `lastmod` when it is generated by the build, not before.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://annabrides.com/</loc>
  </url>
  <url>
    <loc>https://annabrides.com/members</loc>
  </url>
  <url>
    <loc>https://annabrides.com/members/online</loc>
  </url>
  <url>
    <loc>https://annabrides.com/members/search</loc>
  </url>
  <url>
    <loc>https://annabrides.com/register</loc>
  </url>
</urlset>
