<?xml version="1.0" encoding="UTF-8"?>
<!--
  ============================================================
  sitemap.xml — Personal Website
  Place this file in the ROOT of your website
  e.g. https://yourdomain.com/sitemap.xml

  HOW TO USE:
  1. Replace ALL instances of "https://yourdomain.com"
     with your real website URL
  2. Update the <lastmod> dates to today's date
  3. Add or remove <url> blocks to match your actual pages
  4. Upload this file to your website's root folder
  5. Submit to Google Search Console (see GUIDE.md)
  ============================================================
-->
<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">

  <!-- ── HOME PAGE ─────────────────────────────────────────── -->
  <!--
    priority="1.0" = most important page on your site
    changefreq="weekly" = you update it fairly often
  -->
  <url>
    <loc>https://yourdomain.com/</loc>
    <lastmod>2026-03-22</lastmod>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>

  <!-- ── ABOUT PAGE ────────────────────────────────────────── -->
  <!--
    priority="0.9" = very important, second only to home
    changefreq="monthly" = you rarely change it
  -->
  <url>
    <loc>https://yourdomain.com/about</loc>
    <lastmod>2026-03-22</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.9</priority>
  </url>

  <!-- ── PRODUCTS / DIGITAL MATERIALS PAGE ────────────────── -->
  <url>
    <loc>https://yourdomain.com/products</loc>
    <lastmod>2026-03-22</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.9</priority>
  </url>

  <!-- ── R PROGRAMMING MODULES PAGE ───────────────────────── -->
  <url>
    <loc>https://yourdomain.com/modules</loc>
    <lastmod>2026-03-22</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>

  <!-- ── INDIVIDUAL MODULE PAGES ───────────────────────────── -->
  <!-- Add one <url> block per module page you have -->

  <url>
    <loc>https://yourdomain.com/modules/part-1-introduction</loc>
    <lastmod>2026-03-22</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.7</priority>
  </url>

  <url>
    <loc>https://yourdomain.com/modules/part-2-vectors</loc>
    <lastmod>2026-03-22</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.7</priority>
  </url>

  <url>
    <loc>https://yourdomain.com/modules/part-3-control-flow</loc>
    <lastmod>2026-03-22</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.7</priority>
  </url>

  <url>
    <loc>https://yourdomain.com/modules/part-4-loops</loc>
    <lastmod>2026-03-22</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.7</priority>
  </url>

  <url>
    <loc>https://yourdomain.com/modules/part-5-while-repeat</loc>
    <lastmod>2026-03-22</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.7</priority>
  </url>

  <url>
    <loc>https://yourdomain.com/modules/part-6-functions</loc>
    <lastmod>2026-03-22</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.7</priority>
  </url>

  <!-- ── ZOOM / BOOKING PAGE ───────────────────────────────── -->
  <url>
    <loc>https://yourdomain.com/sessions</loc>
    <lastmod>2026-03-22</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>

  <!-- ── CONTACT PAGE ──────────────────────────────────────── -->
  <url>
    <loc>https://yourdomain.com/contact</loc>
    <lastmod>2026-03-22</lastmod>
    <changefreq>yearly</changefreq>
    <priority>0.6</priority>
  </url>

  <!--
  ============================================================
  HOW TO ADD MORE PAGES:

  Copy and paste this block for each new page you add:

  <url>
    <loc>https://yourdomain.com/YOUR-PAGE-NAME</loc>
    <lastmod>YYYY-MM-DD</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.7</priority>
  </url>

  PRIORITY GUIDE:
    1.0 = Homepage only
    0.9 = Most important pages (About, Products)
    0.8 = Important section pages
    0.7 = Individual content pages
    0.6 = Less important pages (Contact, Legal)

  CHANGEFREQ GUIDE:
    always  = changes every visit (not recommended)
    daily   = news sites, live data
    weekly  = regularly updated pages
    monthly = stable pages you update occasionally
    yearly  = rarely changed pages (Privacy Policy, etc.)
    never   = archived/never-changing pages
  ============================================================
  -->

</urlset>
