<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:news="http://www.google.com/schemas/sitemap-news/0.9"
        xmlns:xhtml="http://www.w3.org/1999/xhtml"
        xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"
        xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">
  
  <!-- 首页 -->
  <url>
    <loc>https://your-domain.com/</loc>
    <lastmod>2026-02-16</lastmod>
    <changefreq>daily</changefreq>
    <priority>1.0</priority>
  </url>
  
  <!-- 文章广场 -->
  <url>
    <loc>https://your-domain.com/square</loc>
    <lastmod>2026-02-16</lastmod>
    <changefreq>daily</changefreq>
    <priority>0.9</priority>
  </url>
  
  <!-- 文章分析页面（动态生成时需要替换lastmod） -->
  <url>
    <loc>https://your-domain.com/analyze</loc>
    <lastmod>2026-02-16</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  
  <!-- 
    注意：具体的文章页面应该动态生成
    例如：
    <url>
      <loc>https://your-domain.com/analyze/article-id</loc>
      <lastmod>2024-01-15</lastmod>
      <changefreq>monthly</changefreq>
      <priority>0.7</priority>
    </url>
    
    建议使用服务端动态生成sitemap，包含所有文章URL
  -->
  
  <!-- 题目练习页面 -->
  <url>
    <loc>https://your-domain.com/practice</loc>
    <lastmod>2026-02-16</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.7</priority>
  </url>
  
  <!-- 登录页面（权重较低） -->
  <url>
    <loc>https://your-domain.com/login</loc>
    <lastmod>2026-02-16</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.3</priority>
  </url>
  
  <!-- 注册页面（权重较低） -->
  <url>
    <loc>https://your-domain.com/register</loc>
    <lastmod>2026-02-16</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.3</priority>
  </url>
  
</urlset>
