<?xml version="1.0" encoding="UTF-8"?>
<!-- This line just tells the computer: "This is an XML file, read it as UTF-8 text" -->
<!-- Don't worry about this—it's just technical packaging -->

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <!-- This is like opening a gift box. Everything inside this tag is a list of pages -->

  <!-- ════════════════════════════════════════════════════════════════════════════ -->
  <!-- PURPOSE OF THIS FILE:                                                       -->
  <!-- ════════════════════════════════════════════════════════════════════════════ -->
  <!-- This file is your website's "directory of all pages" that you want Google   -->
  <!-- and other search engines to index and show in search results.               -->
  <!--                                                                              -->
  <!-- Instead of Google having to guess which pages exist on your site, you're   -->
  <!-- giving them a complete map of everywhere they should look.                 -->
  <!--                                                                              -->
  <!-- Think of it like: giving Google a tour guide for your website.            -->

  <url>
    <!-- This tag says: "Here's one page on my website" -->

    <loc>https://c4seas-naerls-isfarm.vercel.app/</loc>
    <!-- "loc" = LOCATION (the actual web address of the page) -->
    <!-- This says: "This page exists at this URL" -->
    <!-- In this case: the HOMEPAGE (the "/" means the main page) -->
    <!-- 
        Examples:
        - https://example.com/           ← Homepage
        - https://example.com/map        ← Map page
        - https://example.com/about      ← About page
    -->

    <lastmod>2026-06-01</lastmod>
    <!-- "lastmod" = LAST MODIFIED (when was this page last updated?) -->
    <!-- This tells Google: "I updated this page on June 1st, 2026" -->
    <!-- WHY? So Google knows if it's fresh/new or old/outdated -->
    <!-- 
        Think of it like:
        - Recent date = Fresh content → Google shows it higher in results
        - Old date = Probably outdated → Google might rank it lower
    -->

    <changefreq>weekly</changefreq>
    <!-- "changefreq" = CHANGE FREQUENCY (how often does this page change?) -->
    <!-- This says: "I update this page every week" -->
    <!-- 
        Possible values:
        - always    = Updated constantly (like a live feed)
        - hourly    = Updated every hour
        - daily     = Updated every day
        - weekly    = Updated every week ← You're using this
        - monthly   = Updated every month
        - yearly    = Updated once a year
        - never     = This page never changes
    -->
    <!-- WHY? So Google knows how often to check back for updates -->

    <priority>1.0</priority>
    <!-- "priority" = HOW IMPORTANT IS THIS PAGE? -->
    <!-- Range: 0.0 (not important) to 1.0 (most important) -->
    <!-- This says: "This page is VERY IMPORTANT (maximum priority)" -->
    <!-- 
      Example priorities:
      - Homepage             = 1.0 (most important)
      - Main features        = 0.9 (very important)
      - Help/FAQ pages       = 0.7 (somewhat important)
      - Old blog posts       = 0.3 (less important)
    -->
    <!-- WHY? So Google knows which pages to show first in search results -->

  </url>
  <!-- End of this page's information -->

</urlset>
<!-- End of the entire sitemap -->
