<?xml version="1.0" encoding="UTF-8"?>
<!--
  sitemap 与路由注册表（src/lib/routes.ts）严格一致：
  仅登记构建期真实存在的 URL，绝不伪造未生成的 locale 路径。
  - https://www.vopc.cn/            简体中文首页（SPA 入口，7 locale 共用，?lang= 提示）
  - https://www.vopc.cn/en/products/lgud/  英文 LGUD 系列静态页（prerender.mts 构建期生成）
  站内 hash 路由（#products、#product/*、#contact 等）为首页的客户端视图，
  抓取方会剥离 fragment，无法作为独立 URL 收录，故不在此登记；
  待各页面完成静态化改造后，在此追加对应 <url> 条目。
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:xhtml="http://www.w3.org/1999/xhtml">
  <!-- 首页（SPA 入口，全 locale） -->
  <url>
    <loc>https://www.vopc.cn/</loc>
    <xhtml:link rel="alternate" hreflang="zh-Hans" href="https://www.vopc.cn/"/>
    <xhtml:link rel="alternate" hreflang="zh-Hant" href="https://www.vopc.cn/?lang=zh-TW"/>
    <xhtml:link rel="alternate" hreflang="en" href="https://www.vopc.cn/?lang=en"/>
    <xhtml:link rel="alternate" hreflang="ru" href="https://www.vopc.cn/?lang=ru"/>
    <xhtml:link rel="alternate" hreflang="de" href="https://www.vopc.cn/?lang=de"/>
    <xhtml:link rel="alternate" hreflang="fr" href="https://www.vopc.cn/?lang=fr"/>
    <xhtml:link rel="alternate" hreflang="ar" href="https://www.vopc.cn/?lang=ar"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://www.vopc.cn/"/>
    <lastmod>2026-09-19</lastmod>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>

  <!-- 英文 LGUD 系列静态页（试点，构建期预渲染真实正文） -->
  <url>
    <loc>https://www.vopc.cn/en/products/lgud/</loc>
    <xhtml:link rel="alternate" hreflang="zh-Hans" href="https://www.vopc.cn/"/>
    <xhtml:link rel="alternate" hreflang="en" href="https://www.vopc.cn/en/products/lgud/"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://www.vopc.cn/"/>
    <lastmod>2026-09-19</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.9</priority>
  </url>
</urlset>
