<?xml version="1.0" encoding="UTF-8"?>

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

  <url>
    <loc>http://localhost:4200/products/men</loc> // men products url - tell search engine that this url is exist(required in url tag) - eventhough priority not mentioned atleast search engine gets to know page exist in this url
    <lastmod>2026-03-18</lastmod> // last modified date(optional)
    <changefreq>daily</changefreq> // change frequency(optional)
    <priority>1.0</priority> // priority(optional)
  </url>

  <url>
    <loc>http://localhost:4200/products/women</loc>
    <lastmod>2026-03-18</lastmod>
    <changefreq>daily</changefreq>
    <priority>1.0</priority>
  </url>


</urlset>
