<?xml version="1.0" encoding="UTF-8"?>
<!--
  Afficruiter's sitemap.

  IT LISTS WHAT IS INDEXABLE, AND THAT SET IS DECIDED ELSEWHERE. Every path this
  app serves carries `X-Robots-Tag: noindex, nofollow` by default (web/vercel.json
  on the marketing host, web/public/_headers on the app host); three documents are
  named exceptions. A sitemap that advertised a noindexed URL would ask Google to
  fetch a page it is then told to drop, which is how a site teaches a crawler to
  trust it less.

  SO THE TWO SOURCES ARE HELD TOGETHER BY A TEST rather than by this comment:
  src/qa/sitemap.test.ts fails if this file and the indexing rules disagree in
  either direction. THE FRONT PAGE IS THE ONE TO WATCH -- "/" is deliberately
  noindexed until launch, so it is deliberately absent here, and the day that
  noindex is lifted that test will fail until "/" is added below. That failure is
  the point: it is the reminder, and it cannot be forgotten.

  ABSOLUTE URLS ON THE APEX. A sitemap's entries must be absolute, and the apex is
  the canonical marketing origin -- the same origin each of these pages names in
  its own <link rel="canonical">, which the pre-render lane put there.

  NO <lastmod>. A date that is not maintained is worse than no date: Google
  discounts a sitemap whose lastmod values it learns to disbelieve, and nothing in
  this repository updates one. Add them only with something that keeps them true.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://afficruiter.com/privacy</loc>
  </url>
  <url>
    <loc>https://afficruiter.com/terms</loc>
  </url>
  <url>
    <loc>https://afficruiter.com/book-a-call</loc>
  </url>
</urlset>
