<%
const routes = [
  {
    loc: "https://www.rakeshsaunr.in/",
    changefreq: "daily",
    priority: "1.0"
  },
  {
    loc: "https://www.rakeshsaunr.in/about",
    changefreq: "monthly",
    priority: "0.9"
  },
  {
    loc: "https://www.rakeshsaunr.in/services",
    changefreq: "weekly",
    priority: "0.9"
  },
  {
    loc: "https://www.rakeshsaunr.in/services/web-development",
    changefreq: "monthly",
    priority: "0.8"
  },
  {
    loc: "https://www.rakeshsaunr.in/services/mobile-app-development",
    changefreq: "monthly",
    priority: "0.8"
  },
  {
    loc: "https://www.rakeshsaunr.in/services/ui-ux-design",
    changefreq: "monthly",
    priority: "0.8"
  },
  {
    loc: "https://www.rakeshsaunr.in/services/digital-marketing",
    changefreq: "monthly",
    priority: "0.8"
  },
  {
    loc: "https://www.rakeshsaunr.in/services/seo-services",
    changefreq: "monthly",
    priority: "0.8"
  },
  {
    loc: "https://www.rakeshsaunr.in/services/cloud-solutions",
    changefreq: "monthly",
    priority: "0.8"
  },
  {
    loc: "https://www.rakeshsaunr.in/services/ai-solutions",
    changefreq: "monthly",
    priority: "0.8"
  },
  {
    loc: "https://www.rakeshsaunr.in/technologies",
    changefreq: "monthly",
    priority: "0.8"
  },
  {
    loc: "https://www.rakeshsaunr.in/our-work",
    changefreq: "weekly",
    priority: "0.9"
  },
  {
    loc: "https://www.rakeshsaunr.in/resources",
    changefreq: "weekly",
    priority: "0.8"
  },
  {
    loc: "https://www.rakeshsaunr.in/resources/blog",
    changefreq: "weekly",
    priority: "0.8"
  },
  {
    loc: "https://www.rakeshsaunr.in/resources/brochure",
    changefreq: "monthly",
    priority: "0.7"
  },
  {
    loc: "https://www.rakeshsaunr.in/inquiry",
    changefreq: "monthly",
    priority: "0.9"
  },
  {
    loc: "https://www.rakeshsaunr.in/contact",
    changefreq: "monthly",
    priority: "0.8"
  },
  {
    loc: "https://www.rakeshsaunr.in/faq",
    changefreq: "monthly",
    priority: "0.7"
  },
  {
    loc: "https://www.rakeshsaunr.in/login",
    changefreq: "monthly",
    priority: "0.6"
  },
  {
    loc: "https://www.rakeshsaunr.in/privacy-policy",
    changefreq: "yearly",
    priority: "0.5"
  },
  {
    loc: "https://www.rakeshsaunr.in/terms-of-service",
    changefreq: "yearly",
    priority: "0.5"
  }
];

// You can get today's date for <lastmod> dynamically
const today = new Date().toISOString().split('T')[0];
%><?xml version="1.0" encoding="UTF-8"?>
<urlset
  xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 
                      http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<% routes.forEach(function(route) { %>
  <url>
    <loc><%= route.loc %></loc>
    <lastmod><%= today %></lastmod>
    <changefreq><%= route.changefreq %></changefreq>
    <priority><%= route.priority %></priority>
  </url>
<% }); %>
</urlset>