修复部分路径问题

This commit is contained in:
2026-01-14 11:44:26 +08:00
parent 39d8f47c11
commit 367215db71
2 changed files with 21 additions and 21 deletions

View File

@@ -34,9 +34,9 @@ export default function HelpMenu() {
icon={h03} icon={h03}
title="平台教程" title="平台教程"
items={[ items={[
{lead: 'iOS 设置', href: '/docs/ios-proxy'}, {lead: 'iOS 设置', href: '/docs/client/ios-proxy'},
{lead: 'Android 设置', href: '/docs/android-proxy'}, {lead: 'Android 设置', href: '/docs/client/android-proxy'},
{lead: 'Windows 设置', href: '/docs/windows10-proxy'}, {lead: 'Windows 设置', href: '/docs/client/windows10-proxy'},
]} ]}
/> />
<Image src={banner} alt="banner" className="hidden lg:block"/> <Image src={banner} alt="banner" className="hidden lg:block"/>

View File

@@ -13,38 +13,38 @@ const MENU_ITEMS = [
{ {
group: '产品文档', group: '产品文档',
items: [ items: [
{key: 'product-overview', label: '产品介绍'}, {key: 'product/product-overview', label: '产品介绍'},
{key: 'choose-product', label: '如何选择产品'}, {key: 'product/choose-product', label: '如何选择产品'},
{key: 'why-verify', label: '为什么需要实名认证'}, {key: 'product/why-verify', label: '为什么需要实名认证'},
{key: 'city-lines', label: '有哪些城市线路'}, {key: 'product/city-lines', label: '有哪些城市线路'},
{key: 'api-docs', label: 'ip提取接口文档'}, {key: 'product/api-docs', label: 'ip提取接口文档'},
// 服务条款 // 服务条款
], ],
}, },
{ {
group: '操作指南', group: '操作指南',
items: [ items: [
{key: 'profile-settings', label: '修改个人信息和重置密码'}, {key: 'operation/profile-settings', label: '修改个人信息和重置密码'},
{key: 'whitelist-guide', label: '如何添加白名单'}, {key: 'operation/whitelist-guide', label: '如何添加白名单'},
{key: 'verify-guide', label: '如何进行实名认证'}, {key: 'operation/verify-guide', label: '如何进行实名认证'},
{key: 'extract-link', label: '如何生成提取链接'}, {key: 'operation/extract-link', label: '如何生成提取链接'},
{key: 'payment-records', label: '查看支付和使用记录'}, {key: 'operation/payment-records', label: '查看支付和使用记录'},
], ],
}, },
{ {
group: '客户端教程', group: '客户端教程',
items: [ items: [
{key: 'browser-proxy', label: '浏览器设置代理教程'}, {key: 'client/browser-proxy', label: '浏览器设置代理教程'},
{key: 'ios-proxy', label: 'iOS设置代理教程'}, {key: 'client/ios-proxy', label: 'iOS设置代理教程'},
{key: 'android-proxy', label: '安卓手机设置代理教程'}, {key: 'client/android-proxy', label: '安卓手机设置代理教程'},
{key: 'windows10-proxy', label: 'Windows10设置代理教程'}, {key: 'client/windows10-proxy', label: 'Windows10设置代理教程'},
], ],
}, },
{ {
group: '常见问题', group: '常见问题',
items: [ items: [
{key: 'faq-general', label: '常见问题总览'}, {key: 'faqs/faq-general', label: '常见问题总览'},
{key: 'faq-billing', label: '计费与套餐问题'}, {key: 'faqs/faq-billing', label: '计费与套餐问题'},
// 业务场景集成方案 // 业务场景集成方案
// 故障排查 // 故障排查
], ],
@@ -52,8 +52,8 @@ const MENU_ITEMS = [
{ {
group: '新闻资讯', group: '新闻资讯',
items: [ items: [
{key: 'news-latest', label: '了解代理服务器的工作原理'}, {key: 'news/news-latest', label: '了解代理服务器的工作原理'},
{key: 'news-announce', label: '网站公告'}, {key: 'news/news-announce', label: '网站公告'},
], ],
}, },
] ]