<?xml version="1.0" encoding="UTF-8"?>
<!--
  Only pages worth landing on from a search result.

  DELIBERATELY ABSENT:
    /account          behind sign-in; a crawler sees a sign-in prompt and nothing else
    /rider/:token     shows a live delivery address — disallowed in robots.txt too
    /track-order/:id  one customer's order, not a page anyone should find by search
    /v1               the frozen 1.0 archive; noindexed by header, see robots.txt
    /cart /checkout   states, not pages

  Updated 30 Aug 2026, the day 2.0 became the live site. Two changes:

    · lastmod moved to the launch date. The homepage genuinely changed that day —
      it is a different build of the shop — and a stale lastmod tells Google
      nothing happened, which is the opposite of what we want right now.

    · /privacy.html became /privacy. `cleanUrls` 301-redirects the .html form, and
      a sitemap should list the URL that answers 200, not one that redirects.
      The old .html address still works for anything already linking to it.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://proteinplate.co.in/</loc>
    <lastmod>2026-08-30</lastmod>
    <changefreq>daily</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://proteinplate.co.in/track-order</loc>
    <lastmod>2026-08-30</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>
  <url>
    <loc>https://proteinplate.co.in/privacy</loc>
    <lastmod>2026-08-30</lastmod>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
</urlset>
