From 284a8f6a582f4fa5de5ff3b3797508f05fd51065 Mon Sep 17 00:00:00 2001 From: xorsum Date: Mon, 9 Mar 2026 16:26:27 +0800 Subject: [PATCH] Expand the Introduction section in sidebar navigation --- docs/.vuepress/config.ts | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/docs/.vuepress/config.ts b/docs/.vuepress/config.ts index 18d9851..7b239fb 100644 --- a/docs/.vuepress/config.ts +++ b/docs/.vuepress/config.ts @@ -6,7 +6,28 @@ import { path } from '@vuepress/utils' import { SidebarOptions } from '@vuepress/theme-default' const sidebar: SidebarOptions = [ - { text: 'Introduction', link: '/introduction' }, + { + text: 'Introduction', + link: '/introduction', + children: [ + { + text: 'Overview', + link: '/introduction#overview', + }, + { + text: 'Introduction', + link: '/introduction#introduction', + }, + { + text: 'Architecture', + link: '/introduction#architecture', + }, + { + text: 'Join the Community', + link: '/introduction#join-the-community', + }, + ] + }, { text: 'Documents', prefix: 'documents',