@@ -10,6 +10,15 @@ 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 : 'Project Status' , link : '/project-status' } ,
19+ { text : 'Contributing' , link : '/contributing' } ,
20+ ]
21+ } ,
1322 {
1423 text : 'Tutorials' ,
1524 items : [
@@ -83,6 +92,7 @@ export default defineConfig({
8392 // Top Navigation
8493 nav : [
8594 { text : 'Guide' , link : '/guide/' } ,
95+ { text : 'Planning' , link : '/planning' } ,
8696 { text : 'AI-Native' , link : '/ai/' } ,
8797 { text : 'API Reference' , link : '/api/' } ,
8898 { text : 'Specification' , link : '/spec/' } ,
@@ -98,6 +108,20 @@ export default defineConfig({
98108
99109 // Sidebar Configuration
100110 sidebar : {
111+ // Sidebar for Planning
112+ '/planning' : [
113+ {
114+ text : 'Project Planning' ,
115+ items : [
116+ { text : 'Overview' , link : '/planning' } ,
117+ { text : 'Roadmap' , link : '/roadmap' } ,
118+ { text : 'Development Plan' , link : '/development-plan' } ,
119+ { text : 'Project Status' , link : '/project-status' } ,
120+ { text : 'Contributing Guide' , link : '/contributing' } ,
121+ ]
122+ }
123+ ] ,
124+
101125 // Sidebar for Tutorials
102126 '/tutorials/' : guideSidebar ,
103127
0 commit comments