<?xml version="1.0" encoding="UTF-8"?>
<!--
  public/sitemap.xml
  访问地址：https://www.qianshouai.cn/sitemap.xml

  当前策略：只将首页提交给搜索引擎。
  理由：
    · 其余页面（编辑器、生成页、支付页）需要登录，
      爬虫进入后得到空内容或重定向，索引后反而降低整站质量分
    · 将 crawl budget 集中在首页，让首页尽快被深度索引
    · 如未来有独立的内容页（博客、模板展示页），再追加到此文件

  提交方式：
    1. Google Search Console → Sitemaps → 提交 https://www.qianshouai.cn/sitemap.xml
    2. 百度站长平台 → 链接提交 → sitemap → 同上网址
    3. Bing Webmaster Tools → 同上
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:xhtml="http://www.w3.org/1999/xhtml">

  <!-- 首页：唯一对搜索引擎开放的页面，权重最高 -->
  <url>
    <loc>https://www.qianshouai.cn/</loc>
    <!--
      lastmod：页面内容最后更新日期（格式 YYYY-MM-DD）
      每次改动首页内容后同步更新此日期，告知爬虫重新抓取
    -->
    <lastmod>2026-06-26</lastmod>
    <!--
      changefreq：向爬虫提示页面更新频率（仅作参考，爬虫不保证遵守）
      首页功能介绍文案变化不频繁，设为 monthly 即可
    -->
    <changefreq>monthly</changefreq>
    <!-- priority：站内爬取优先级，1.0 为最高，只有一个页面设为 1.0 -->
    <priority>1.0</priority>
    <xhtml:link rel="alternate" hreflang="zh-CN" href="https://www.qianshouai.cn/"/>
  </url>

</urlset>