From 61dc5de085accefc07ed504e56cc63fe956c58e9 Mon Sep 17 00:00:00 2001 From: Junyan Qin Date: Mon, 5 Jan 2026 18:45:35 +0800 Subject: [PATCH] fix: update help links in sidebar configuration to reflect new usage paths and add Japanese translations --- .../home-sidebar/sidbarConfigList.tsx | 20 +++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/web/src/app/home/components/home-sidebar/sidbarConfigList.tsx b/web/src/app/home/components/home-sidebar/sidbarConfigList.tsx index 868ac5b4..f8cfb633 100644 --- a/web/src/app/home/components/home-sidebar/sidbarConfigList.tsx +++ b/web/src/app/home/components/home-sidebar/sidbarConfigList.tsx @@ -23,8 +23,9 @@ export const sidebarConfigList = [ route: '/home/bots', description: t('bots.description'), helpLink: { - en_US: 'https://docs.langbot.app/en/deploy/platforms/readme.html', - zh_Hans: 'https://docs.langbot.app/zh/deploy/platforms/readme.html', + en_US: 'https://docs.langbot.app/en/usage/platforms/readme.html', + zh_Hans: 'https://docs.langbot.app/zh/usage/platforms/readme.html', + ja_JP: 'https://docs.langbot.app/ja/usage/platforms/readme.html', }, }), new SidebarChildVO({ @@ -43,8 +44,9 @@ export const sidebarConfigList = [ route: '/home/pipelines', description: t('pipelines.description'), helpLink: { - en_US: 'https://docs.langbot.app/en/deploy/pipelines/readme.html', - zh_Hans: 'https://docs.langbot.app/zh/deploy/pipelines/readme.html', + en_US: 'https://docs.langbot.app/en/usage/pipelines/readme.html', + zh_Hans: 'https://docs.langbot.app/zh/usage/pipelines/readme.html', + ja_JP: 'https://docs.langbot.app/ja/usage/pipelines/readme.html', }, }), new SidebarChildVO({ @@ -62,8 +64,9 @@ export const sidebarConfigList = [ route: '/home/knowledge', description: t('knowledge.description'), helpLink: { - en_US: 'https://docs.langbot.app/en/deploy/knowledge/readme.html', - zh_Hans: 'https://docs.langbot.app/zh/deploy/knowledge/readme.html', + en_US: 'https://docs.langbot.app/en/usage/knowledge/readme.html', + zh_Hans: 'https://docs.langbot.app/zh/usage/knowledge/readme.html', + ja_JP: 'https://docs.langbot.app/ja/usage/knowledge/readme.html', }, }), new SidebarChildVO({ @@ -82,8 +85,9 @@ export const sidebarConfigList = [ route: '/home/plugins', description: t('plugins.description'), helpLink: { - en_US: 'https://docs.langbot.app/en/plugin/plugin-intro.html', - zh_Hans: 'https://docs.langbot.app/zh/plugin/plugin-intro.html', + en_US: 'https://docs.langbot.app/en/usage/plugin/plugin-intro.html', + zh_Hans: 'https://docs.langbot.app/zh/usage/plugin/plugin-intro.html', + ja_JP: 'https://docs.langbot.app/ja/usage/plugin/plugin-intro.html', }, }), ];