<?xml version="1.0" encoding="utf-8"?>
<!--
    The site's STATIC routes, and nothing else.

    Every entry here is a path in `pagePaths` (src/app/utilities/constants.js)
    that matches a <Route> in src/index.jsx AND renders real content for an
    anonymous visitor. Anything else in `pagePaths` is deliberately absent:

      /view/post, /profile     - only /view/post/:postId and /profile/:userId are
                                 routes; the bare prefixes fall through to
                                 <Redirect to="/"> and are the homepage again.
      /admin/sync,
      /admin/suggestions       - redirect a non-SuperAdmin home, so for a crawler
                                 they are duplicates of the homepage.
      /suggestions             - gated on the `suggestion-board` feature flag,
                                 which is off, so it redirects home too.
      /banned                  - resolves, but it is an account-state notice, not
                                 content anyone should land on from a search.
      /create/post             - a step inside the compose flow, not a landing
                                 page. Reached directly with no :postId and no
                                 draft in localStorage, createPostPage toasts
                                 "No valid post found" and pushes to
                                 /create/browse. Verified in a browser against
                                 the published build, not read off the router.

    Posts and profiles are NOT enumerated. That needs a sitemap generated from the
    database and is separate work.

    No <changefreq> and no <priority>: Google ignores both. No <lastmod> either -
    the previous version of this file claimed 2020-06-01 for everything, and an
    invented date is worse than none.
  -->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://tags.tf/</loc>
  </url>
  <url>
    <loc>https://tags.tf/create/browse</loc>
  </url>
  <url>
    <loc>https://tags.tf/search</loc>
  </url>
  <url>
    <loc>https://tags.tf/leaderboards</loc>
  </url>
  <url>
    <loc>https://tags.tf/about-us</loc>
  </url>
  <url>
    <loc>https://tags.tf/policy</loc>
  </url>
  <url>
    <loc>https://tags.tf/policy/cookie</loc>
  </url>
  <url>
    <loc>https://tags.tf/policy/privacy</loc>
  </url>
  <url>
    <loc>https://tags.tf/policy/terms-and-conditions</loc>
  </url>
</urlset>
