<?xml version="1.0" encoding="UTF-8"?>
<!--
  EVERY <loc> HERE MUST BE THE URL THE APP CANONICALISES TO (PET-W150).

  `App.applySeo()` writes `<link rel="canonical">` as `${BASE_URL}/${locale}${path}` and
  `x-default` as the `/en` copy — so the homepage's canonical is https://petna-app.com/en, not
  https://petna-app.com/. This file used to list the bare, locale-less URL as both <loc> and
  x-default, which is the same page telling Google two different things about which version to
  index. Self-contradictory canonical signals do not average out; they get resolved by the
  crawler's guess, which is not a thing to leave to chance in the weeks after a launch.

  If the canonical scheme in app.ts ever changes (for instance, to leave the default locale off
  the URL), this file changes in the same commit. `scripts/check-sitemap-canonical.mjs` fails CI
  if the two disagree.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:xhtml="http://www.w3.org/1999/xhtml">
  <url>
    <loc>https://petna-app.com/en</loc>
    <xhtml:link rel="alternate" hreflang="en" href="https://petna-app.com/en"/>
    <xhtml:link rel="alternate" hreflang="ar" href="https://petna-app.com/ar"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://petna-app.com/en"/>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://petna-app.com/en/for-clinics</loc>
    <xhtml:link rel="alternate" hreflang="en" href="https://petna-app.com/en/for-clinics"/>
    <xhtml:link rel="alternate" hreflang="ar" href="https://petna-app.com/ar/for-clinics"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://petna-app.com/en/for-clinics"/>
    <changefreq>monthly</changefreq>
    <priority>0.9</priority>
  </url>
  <url>
    <loc>https://petna-app.com/en/contact</loc>
    <xhtml:link rel="alternate" hreflang="en" href="https://petna-app.com/en/contact"/>
    <xhtml:link rel="alternate" hreflang="ar" href="https://petna-app.com/ar/contact"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://petna-app.com/en/contact"/>
    <changefreq>monthly</changefreq>
    <priority>0.7</priority>
  </url>
  <url>
    <loc>https://petna-app.com/en/feedback</loc>
    <xhtml:link rel="alternate" hreflang="en" href="https://petna-app.com/en/feedback"/>
    <xhtml:link rel="alternate" hreflang="ar" href="https://petna-app.com/ar/feedback"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://petna-app.com/en/feedback"/>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>
  <url>
    <loc>https://petna-app.com/en/privacy-policy</loc>
    <xhtml:link rel="alternate" hreflang="en" href="https://petna-app.com/en/privacy-policy"/>
    <xhtml:link rel="alternate" hreflang="ar" href="https://petna-app.com/ar/privacy-policy"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://petna-app.com/en/privacy-policy"/>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
  <url>
    <loc>https://petna-app.com/en/terms-of-service</loc>
    <xhtml:link rel="alternate" hreflang="en" href="https://petna-app.com/en/terms-of-service"/>
    <xhtml:link rel="alternate" hreflang="ar" href="https://petna-app.com/ar/terms-of-service"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://petna-app.com/en/terms-of-service"/>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
</urlset>
