<?xml version="1.0" encoding="UTF-8"?>
<!--
  youlocal.app sitemap.

  Every URL here is a REAL page. That distinction matters on this site: the CloudFront
  distribution maps 404 and 403 to `200 /index.html` (website-stack.ts:124-136) because the
  locale-prefixed routes are client-side (src/main.tsx:36-49) and have no files of their own. The
  side effect is that ANY path returns 200 with the homepage shell — so an over-broad sitemap here
  would hand Google a list of URLs that all resolve to identical content, which is exactly the
  "duplicate page without a user-selected canonical" it is already complaining about.

  The five locale roots are genuine alternates of one page, not duplicates, which is what the
  xhtml:link hreflang entries below declare. x-default points at /it because that is the fallback
  the client picks when it cannot detect a supported language.

  NOT listed, on purpose:
    /                      — renders nothing; it JS-redirects to /<lang> (main.tsx:44-49)
    /*/download            — noindex, invite-gated betas
    /trip/*                — per-trip share links
    /download.html         — the static legacy copy, already noindex
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:xhtml="http://www.w3.org/1999/xhtml">

  <url>
    <loc>https://www.youlocal.app/it</loc>
    <xhtml:link rel="alternate" hreflang="it" href="https://www.youlocal.app/it"/>
    <xhtml:link rel="alternate" hreflang="en" href="https://www.youlocal.app/en"/>
    <xhtml:link rel="alternate" hreflang="de" href="https://www.youlocal.app/de"/>
    <xhtml:link rel="alternate" hreflang="fr" href="https://www.youlocal.app/fr"/>
    <xhtml:link rel="alternate" hreflang="es" href="https://www.youlocal.app/es"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://www.youlocal.app/it"/>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>

  <url>
    <loc>https://www.youlocal.app/en</loc>
    <xhtml:link rel="alternate" hreflang="it" href="https://www.youlocal.app/it"/>
    <xhtml:link rel="alternate" hreflang="en" href="https://www.youlocal.app/en"/>
    <xhtml:link rel="alternate" hreflang="de" href="https://www.youlocal.app/de"/>
    <xhtml:link rel="alternate" hreflang="fr" href="https://www.youlocal.app/fr"/>
    <xhtml:link rel="alternate" hreflang="es" href="https://www.youlocal.app/es"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://www.youlocal.app/it"/>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>

  <url>
    <loc>https://www.youlocal.app/de</loc>
    <xhtml:link rel="alternate" hreflang="it" href="https://www.youlocal.app/it"/>
    <xhtml:link rel="alternate" hreflang="en" href="https://www.youlocal.app/en"/>
    <xhtml:link rel="alternate" hreflang="de" href="https://www.youlocal.app/de"/>
    <xhtml:link rel="alternate" hreflang="fr" href="https://www.youlocal.app/fr"/>
    <xhtml:link rel="alternate" hreflang="es" href="https://www.youlocal.app/es"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://www.youlocal.app/it"/>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>

  <url>
    <loc>https://www.youlocal.app/fr</loc>
    <xhtml:link rel="alternate" hreflang="it" href="https://www.youlocal.app/it"/>
    <xhtml:link rel="alternate" hreflang="en" href="https://www.youlocal.app/en"/>
    <xhtml:link rel="alternate" hreflang="de" href="https://www.youlocal.app/de"/>
    <xhtml:link rel="alternate" hreflang="fr" href="https://www.youlocal.app/fr"/>
    <xhtml:link rel="alternate" hreflang="es" href="https://www.youlocal.app/es"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://www.youlocal.app/it"/>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>

  <url>
    <loc>https://www.youlocal.app/es</loc>
    <xhtml:link rel="alternate" hreflang="it" href="https://www.youlocal.app/it"/>
    <xhtml:link rel="alternate" hreflang="en" href="https://www.youlocal.app/en"/>
    <xhtml:link rel="alternate" hreflang="de" href="https://www.youlocal.app/de"/>
    <xhtml:link rel="alternate" hreflang="fr" href="https://www.youlocal.app/fr"/>
    <xhtml:link rel="alternate" hreflang="es" href="https://www.youlocal.app/es"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://www.youlocal.app/it"/>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>

  <!-- Static, single-language legal + support pages. Real files, served directly. -->
  <url><loc>https://www.youlocal.app/privacy.html</loc><changefreq>yearly</changefreq><priority>0.3</priority></url>
  <url><loc>https://www.youlocal.app/terms.html</loc><changefreq>yearly</changefreq><priority>0.3</priority></url>
  <url><loc>https://www.youlocal.app/support.html</loc><changefreq>monthly</changefreq><priority>0.4</priority></url>
  <url><loc>https://www.youlocal.app/delete-account.html</loc><changefreq>yearly</changefreq><priority>0.3</priority></url>

</urlset>
