<?xml version="1.0" encoding="UTF-8"?>
<!--
    sitemap.xml — StormWall Technologies
    ======================================
    A sitemap tells search engines about every page on the site
    and provides hints about how often content changes and which
    pages are most important. Submitted to Google Search Console
    and Bing Webmaster Tools to accelerate indexing.

    Submit this sitemap at:
      Google: https://search.google.com/search-console
      Bing:   https://www.bing.com/webmasters

    <loc>        — The canonical URL of the page (must match
                   the canonical <link> tag in the HTML).
    <lastmod>    — Date the page content was last meaningfully
                   changed (YYYY-MM-DD). Update this whenever
                   you make content edits to index.html.
    <changefreq> — Hint to crawlers about how often this page
                   changes. Does not guarantee crawl frequency.
    <priority>   — Relative importance of this URL vs. others
                   on the same site (0.0–1.0). The homepage is
                   always 1.0; section anchors are slightly lower.

    NOTE: This is a single-page site. The section anchors (#services,
    #about, #contact) are listed separately so search engines can
    link directly to those sections from results pages.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

  <!-- Homepage / Hero -->
  <url>
    <loc>https://stormwalltechnologies.com/</loc>
    <lastmod>2025-01-01</lastmod>
    <changefreq>monthly</changefreq>
    <priority>1.0</priority>
  </url>

  <!-- Services section anchor -->
  <url>
    <loc>https://stormwalltechnologies.com/#services</loc>
    <lastmod>2025-01-01</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.9</priority>
  </url>

  <!-- About section anchor -->
  <url>
    <loc>https://stormwalltechnologies.com/#about</loc>
    <lastmod>2025-01-01</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>

  <!-- Contact section anchor -->
  <url>
    <loc>https://stormwalltechnologies.com/#contact</loc>
    <lastmod>2025-01-01</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>

</urlset>
