|
1 | 1 | import type { DefaultTheme } from 'vitepress' |
2 | 2 |
|
3 | 3 | export const navZh: DefaultTheme.NavItem[] = [ |
4 | | - { text: '首页', link: '/' }, |
5 | 4 | { |
6 | 5 | text: '基础与特性', |
7 | 6 | items: [ |
@@ -35,14 +34,18 @@ export const navZh: DefaultTheme.NavItem[] = [ |
35 | 34 | ], |
36 | 35 | }, |
37 | 36 | { text: '参考', link: '/cpp-reference/' }, |
38 | | - { text: '附录', link: '/appendix/' }, |
39 | 37 | { text: '社区', link: '/community/' }, |
40 | | - { text: '路线图', link: '/roadmap/' }, |
41 | | - { text: '贡献者', link: '/team/' }, |
| 38 | + { |
| 39 | + text: '更多', |
| 40 | + items: [ |
| 41 | + { text: '附录', link: '/appendix/' }, |
| 42 | + { text: '路线图', link: '/roadmap/' }, |
| 43 | + { text: '贡献者', link: '/team/' }, |
| 44 | + ], |
| 45 | + }, |
42 | 46 | ] |
43 | 47 |
|
44 | 48 | export const navEn: DefaultTheme.NavItem[] = [ |
45 | | - { text: 'Home', link: '/en/' }, |
46 | 49 | { |
47 | 50 | text: 'Fundamentals', |
48 | 51 | items: [ |
@@ -76,8 +79,13 @@ export const navEn: DefaultTheme.NavItem[] = [ |
76 | 79 | ], |
77 | 80 | }, |
78 | 81 | { text: 'Reference', link: '/en/cpp-reference/' }, |
79 | | - { text: 'Appendix', link: '/en/appendix/' }, |
80 | 82 | { text: 'Community', link: '/en/community/' }, |
81 | | - { text: 'Roadmap', link: '/en/roadmap/' }, |
82 | | - { text: 'Team', link: '/en/team/' }, |
| 83 | + { |
| 84 | + text: 'More', |
| 85 | + items: [ |
| 86 | + { text: 'Appendix', link: '/en/appendix/' }, |
| 87 | + { text: 'Roadmap', link: '/en/roadmap/' }, |
| 88 | + { text: 'Team', link: '/en/team/' }, |
| 89 | + ], |
| 90 | + }, |
83 | 91 | ] |
0 commit comments