<?xml version="1.0" encoding="UTF-8"?>
<!-- XML declaration - specifies the XML version and character encoding used in the document -->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <!-- urlset is the root element that contains all URLs in the sitemap -->
  <!-- xmlns attribute defines the XML namespace for the sitemap protocol -->
  <url>
    <!-- url element contains information about a specific page -->
    <loc>https://icebreakergenerator.com/</loc>
    <!-- loc (required) - contains the URL of the page; this must begin with the protocol (https) -->
    <lastmod>2025-05-12</lastmod>
    <!-- lastmod (optional) - indicates when the page was last modified, in YYYY-MM-DD format -->
    <changefreq>weekly</changefreq>
    <!-- changefreq (optional) - suggests how frequently the page changes (always, hourly, daily, weekly, monthly, yearly, never) -->
    <priority>1.0</priority>
    <!-- priority (optional) - indicates the importance of this URL relative to other URLs (0.0 to 1.0, with 1.0 being most important) -->
  </url>
  <!-- Add more URLs as needed -->
  <!-- 
  Example of additional URL:
  <url>
    <loc>https://icebreakergenerator.com/pricing</loc>
    <lastmod>2025-05-10</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>
  -->
</urlset> 