<?xml version="1.0" encoding="UTF-8"?>
<!--
  Public content routes, for search and for URL-rating crawlers (see robots.txt).

  https://lemon.help is substituted by webapp_build.sh at build time, for the same
  reason og:image is: sitemap <loc> must be an absolute URL, and the public base
  comes from the configured web base (global DB webapp_base_url) rather than the
  request host — so it cannot be checked in. An unbuilt copy served by the dev
  server therefore shows the placeholder verbatim; that is expected.

  Only routes that render content without a session belong here. Authenticated and
  token-bearing routes are listed as Disallow in robots.txt instead. Expert pages
  (/<handle> and /expert/<guid>) are deliberately absent — they are per-expert and
  unbounded; they are reachable from /list and carry their own OG tags via
  ExpertPageOgEndpoint.

  Serving this needs an exact-match `location = /sitemap.xml` in BOTH nginx configs,
  or the expert handle regex claims it. Same trap as /robots.txt and /favicon.ico.

  Keep in sync with the public routes in frontend2/src/App.tsx.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <url>
        <loc>https://lemon.help/</loc>
        <changefreq>weekly</changefreq>
        <priority>1.0</priority>
    </url>
    <url>
        <loc>https://lemon.help/list</loc>
        <changefreq>daily</changefreq>
        <priority>0.9</priority>
    </url>
    <url>
        <loc>https://lemon.help/experts</loc>
        <changefreq>daily</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc>https://lemon.help/register-expert</loc>
        <changefreq>monthly</changefreq>
        <priority>0.7</priority>
    </url>
    <url>
        <loc>https://lemon.help/about</loc>
        <changefreq>monthly</changefreq>
        <priority>0.6</priority>
    </url>
    <url>
        <loc>https://lemon.help/faq-patients</loc>
        <changefreq>monthly</changefreq>
        <priority>0.6</priority>
    </url>
    <url>
        <loc>https://lemon.help/faq-experts</loc>
        <changefreq>monthly</changefreq>
        <priority>0.6</priority>
    </url>
    <url>
        <loc>https://lemon.help/signup</loc>
        <changefreq>monthly</changefreq>
        <priority>0.5</priority>
    </url>
</urlset>
