feat(plugin page): robust SEO + sitemap inclusion

- Richer metadata: 14 targeted keywords, explicit robots directives
  (index/follow + googleBot max-image-preview), full OpenGraph with OG
  image, twitter summary_large_image, authors/creator/publisher fields
- 3 JSON-LD blocks: SoftwareApplication (version, downloadUrl, featureList,
  screenshot), FAQPage (4 install/usage Q&As), BreadcrumbList
- Add /plugin to STATIC_PAGES sitemap (monthly, priority 0.7)
- Update sitemap tests: static count 7→8, assert /plugin present
- All 25 sitemap tests pass
This commit is contained in:
2026-06-29 00:10:07 +08:00
parent b416f49e3d
commit 59ecb4e4a6
3 changed files with 119 additions and 15 deletions
+2
View File
@@ -79,6 +79,8 @@ export const STATIC_PAGES: StaticPageDef[] = [
// Core browse pages
{ urlPath: "/games", changeFrequency: "daily", priority: 0.9 },
{ urlPath: "/devices", changeFrequency: "weekly", priority: 0.7 },
// Plugin landing page
{ urlPath: "/plugin", changeFrequency: "monthly", priority: 0.7 },
{ urlPath: "/updates", changeFrequency: "weekly", priority: 0.6 },
// Utility pages
{ urlPath: "/compare", changeFrequency: "weekly", priority: 0.5 },