Skip to content

Commit c959860

Browse files
Copilothuangyiirene
andcommitted
docs: Add planning documentation to VitePress navigation
- Added planning.md index page for project planning hub - Copied planning docs to docs/ directory for VitePress access - Updated VitePress config with Planning navigation section - Added Planning sidebar with all planning documents - Added Project Planning section to guide sidebar Co-authored-by: huangyiirene <7665279+huangyiirene@users.noreply.github.com>
1 parent 5ceed4f commit c959860

7 files changed

Lines changed: 2516 additions & 0 deletions

File tree

docs/.vitepress/config.mts

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@ const guideSidebar = [
1010
{ text: 'IDE Setup', link: '/guide/ide-setup' },
1111
]
1212
},
13+
{
14+
text: 'Project Planning',
15+
items: [
16+
{ text: 'Roadmap', link: '/roadmap' },
17+
{ text: 'Development Plan', link: '/development-plan' },
18+
{ text: '开发计划 (中文)', link: '/development-plan-cn' },
19+
{ text: 'Project Status', link: '/project-status' },
20+
{ text: 'Contributing', link: '/contributing' },
21+
]
22+
},
1323
{
1424
text: 'Tutorials',
1525
items: [
@@ -83,6 +93,7 @@ export default defineConfig({
8393
// Top Navigation
8494
nav: [
8595
{ text: 'Guide', link: '/guide/' },
96+
{ text: 'Planning', link: '/planning' },
8697
{ text: 'AI-Native', link: '/ai/' },
8798
{ text: 'API Reference', link: '/api/' },
8899
{ text: 'Specification', link: '/spec/' },
@@ -98,6 +109,21 @@ export default defineConfig({
98109

99110
// Sidebar Configuration
100111
sidebar: {
112+
// Sidebar for Planning
113+
'/planning': [
114+
{
115+
text: 'Project Planning',
116+
items: [
117+
{ text: 'Overview', link: '/planning' },
118+
{ text: 'Roadmap', link: '/roadmap' },
119+
{ text: 'Development Plan', link: '/development-plan' },
120+
{ text: '开发计划 (中文)', link: '/development-plan-cn' },
121+
{ text: 'Project Status', link: '/project-status' },
122+
{ text: 'Contributing Guide', link: '/contributing' },
123+
]
124+
}
125+
],
126+
101127
// Sidebar for Tutorials
102128
'/tutorials/': guideSidebar,
103129

0 commit comments

Comments
 (0)