<?xml version="1.0" encoding="UTF-8"?>
<!--
  Hand-maintained. Five URLs is small enough that generating it would add a
  dependency to save nothing.

  TWO FIXES vs the Next build:

  1. TRAILING SLASHES. Every <loc> except the root was missing one
     (https://sharetext.cc/about), but the site is built with
     `trailingSlash: "always"`, so that URL 308-redirects to /about/. A sitemap
     full of redirects is a sitemap that reports "3 pages with issues" in Search
     Console and makes Google discover the real URL the slow way. The canonical
     tag on each page now agrees with the <loc> character for character.

  2. <lastmod> ADDED. It was absent entirely. Crawlers use it to decide what to
     re-fetch, and it is the one field here Google actually pays attention to —
     <changefreq> and <priority> are documented as ignored, and are kept only
     because removing them changes nothing either way.

  Dates are real: the legal pages carry their own "Last updated: April 26, 2025",
  and the marketing pages were revised in the on-page SEO pass.

  DELIBERATELY ABSENT: /auth/ (noindex sign-in form), /dashboard/*, /admin/*,
  /settings/* (guarded app shells, also Disallowed), /styleguide/ and /selftest/
  (development pages), and share URLs — every /:token is user content served from
  one file and must never be indexed.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

  <url>
    <loc>https://sharetext.cc/</loc>
    <lastmod>2026-09-05</lastmod>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>

  <url>
    <loc>https://sharetext.cc/about/</loc>
    <lastmod>2026-09-05</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.7</priority>
  </url>

  <url>
    <loc>https://sharetext.cc/contact/</loc>
    <lastmod>2026-09-05</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.6</priority>
  </url>

  <!--
    The three standalone tools. Priority 0.8 — below the home page, above the legal
    pages: they are real destinations with their own search intent, and each one is
    linked from the footer of every page as well as from the other two.
  -->
  <url>
    <loc>https://sharetext.cc/copy-paste-online/</loc>
    <lastmod>2026-09-05</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>

  <url>
    <loc>https://sharetext.cc/online-notepad/</loc>
    <lastmod>2026-09-05</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>

  <url>
    <loc>https://sharetext.cc/text-repeater/</loc>
    <lastmod>2026-09-05</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>

  <url>
    <loc>https://sharetext.cc/privacy/</loc>
    <lastmod>2025-04-26</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>

  <url>
    <loc>https://sharetext.cc/terms/</loc>
    <lastmod>2025-04-26</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>

</urlset>
