<?xml version="1.0" encoding="UTF-8"?>
<!--
  solyntaflow.com serves two sites from one domain, and `/` redirects between
  them at the edge on the visitor's IP country (see middleware.js).

  That redirect is what makes this file necessary. Googlebot crawls
  predominantly from US IPs, so it is sent to the Western site and would never
  discover the Nigerian one by following `/`. The sitemap is the discovery path
  that keeps both halves indexable, and the hreflang annotations tell a search
  engine that the two homepages are regional alternates of each other rather
  than duplicate content competing for the same queries.

  hreflang lives HERE rather than as <link> tags in the page head, deliberately:
  this is a client-rendered SPA, so head tags are injected by JavaScript after
  load, and sitemap annotations are read without executing anything.

  `/` is deliberately absent. It is a 307 to one side or the other, and a
  redirecting URL does not belong in a sitemap — it is not a page.
-->
<urlset
  xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
  xmlns:xhtml="http://www.w3.org/1999/xhtml"
>

  <!-- ===================================================================
       The two regional homepages. These are alternates of one another: the
       same job — "here is what SolyntaFlow does for you" — for two different
       readers, in two currencies.

       Every alternate set must list every member of the set INCLUDING itself,
       and the annotations must be reciprocal, or Google ignores them entirely.
       =================================================================== -->

  <url>
    <loc>https://solyntaflow.com/back-office</loc>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
    <xhtml:link rel="alternate" hreflang="en" href="https://solyntaflow.com/back-office"/>
    <xhtml:link rel="alternate" hreflang="en-NG" href="https://solyntaflow.com/whatsapp"/>
    <!-- x-default is the Western site: it is priced in £/$ and reads sensibly
         to any reader, whereas the Nigerian page quotes naira and states the
         platform is free — true in Nigeria, false everywhere else. -->
    <xhtml:link rel="alternate" hreflang="x-default" href="https://solyntaflow.com/back-office"/>
  </url>

  <url>
    <loc>https://solyntaflow.com/whatsapp</loc>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
    <xhtml:link rel="alternate" hreflang="en" href="https://solyntaflow.com/back-office"/>
    <xhtml:link rel="alternate" hreflang="en-NG" href="https://solyntaflow.com/whatsapp"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://solyntaflow.com/back-office"/>
  </url>

  <!-- ===================================================================
       Everything below has no alternate, and that is correct rather than an
       omission. hreflang describes the SAME content for a different region.
       /back-office/compare is a cost table against UK and US bookkeeping;
       /whatsapp/customers is a naira offer-pack rate card. They are different
       pages, not translations, and pairing them would tell Google they are
       interchangeable.
       =================================================================== -->

  <url>
    <loc>https://solyntaflow.com/back-office/compare</loc>
    <changefreq>monthly</changefreq>
    <priority>0.9</priority>
  </url>

  <url>
    <loc>https://solyntaflow.com/back-office/accountants</loc>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>

  <url>
    <loc>https://solyntaflow.com/start</loc>
    <changefreq>monthly</changefreq>
    <priority>0.7</priority>
  </url>

  <url>
    <loc>https://solyntaflow.com/whatsapp/customers</loc>
    <changefreq>monthly</changefreq>
    <priority>0.9</priority>
  </url>

  <url>
    <loc>https://solyntaflow.com/whatsapp/selling</loc>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>

  <url>
    <loc>https://solyntaflow.com/whatsapp/deals</loc>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>

  <url>
    <loc>https://solyntaflow.com/whatsapp/agents</loc>
    <changefreq>monthly</changefreq>
    <priority>0.7</priority>
  </url>

</urlset>
