@@ -6,7 +6,7 @@ const docsRoot = path.resolve(import.meta.dirname, '..');
66
77export const ko = defineConfig ( {
88 lang : 'ko' ,
9- description : 'TODO ' ,
9+ description : 'Node.js를 위한 현대적인 git 라이브러리 ' ,
1010 themeConfig : {
1111 nav : nav ( ) ,
1212 sidebar : sidebar ( ) ,
@@ -24,7 +24,8 @@ export const ko = defineConfig({
2424function nav ( ) : DefaultTheme . NavItem [ ] {
2525 return [
2626 { text : '홈' , link : '/ko' } ,
27- { text : '소개' , link : '/ko/intro' } ,
27+ { text : '소개' , link : '/ko/about' } ,
28+ { text : '사용법' , link : '/ko/usage/open' } ,
2829 ] ;
2930}
3031
@@ -33,13 +34,25 @@ function sidebar(): DefaultTheme.Sidebar {
3334 {
3435 text : '가이드' ,
3536 items : [
36- { text : '소개' , link : '/ko/intro' } ,
37- { text : '설치 및 사용 방법' , link : '/ko/usage' } ,
37+ { text : '소개' , link : '/ko/about' } ,
38+ { text : '설치하기' , link : '/ko/install' } ,
39+ ] ,
40+ } ,
41+ {
42+ text : '사용법' ,
43+ items : [
44+ { text : '리포지토리 열기' , link : '/ko/usage/open' } ,
45+ { text : '리포지토리 복제하기' , link : '/ko/usage/clone' } ,
46+ { text : '리모트' , link : '/ko/usage/remote' } ,
47+ { text : '커밋 히스토리' , link : '/ko/usage/history' } ,
48+ { text : '커밋하기' , link : '/ko/usage/commit' } ,
49+ { text : '태그' , link : '/ko/usage/tag' } ,
3850 ] ,
3951 } ,
4052 {
4153 text : 'API' ,
4254 collapsed : true ,
55+ link : '/ko/api/globals' ,
4356 items : getAPISidebarItems ( docsRoot , 'ko' ) ,
4457 } ,
4558 ] ;
0 commit comments