From 3837de0a0e39ea8c7676a437da487c834cd5b877 Mon Sep 17 00:00:00 2001 From: neverland Date: Tue, 21 Jul 2026 11:50:39 +0800 Subject: [PATCH] docs: update homepage copy and footer links --- website/i18n.json | 6 +++--- website/theme/components/HomeFooter.tsx | 16 ++++++++++++---- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/website/i18n.json b/website/i18n.json index b253a42..a86e4cd 100644 --- a/website/i18n.json +++ b/website/i18n.json @@ -4,12 +4,12 @@ "zh": "快速上手" }, "subtitle": { - "en": "The Unified Rstack Toolchain", - "zh": "统一的 Rstack 工具链" + "en": "The Unified JavaScript Toolchain", + "zh": "统一的 JavaScript 工具链" }, "slogan": { "en": "One CLI, one configuration, one consistent workflow", - "zh": "一个命令行、一份配置、一致的研发体验" + "zh": "一个命令行、一份配置、一致的工作流" }, "unifiedCli": { "en": "One CLI", diff --git a/website/theme/components/HomeFooter.tsx b/website/theme/components/HomeFooter.tsx index 4780c28..50140ff 100644 --- a/website/theme/components/HomeFooter.tsx +++ b/website/theme/components/HomeFooter.tsx @@ -25,18 +25,26 @@ function useFooterData() { { title: t('commands'), items: [ - { - title: 'rs dev', - link: getLink('/guide/cli/dev'), - }, { title: 'rs build', link: getLink('/guide/cli/build'), }, + { + title: 'rs lib', + link: getLink('/guide/cli/lib'), + }, { title: 'rs test', link: getLink('/guide/cli/test'), }, + { + title: 'rs lint', + link: getLink('/guide/cli/lint'), + }, + { + title: 'rs doc', + link: getLink('/guide/cli/doc'), + }, ], }, {