forked from Gitlink/gitlink_help_center
34 lines
739 B
JavaScript
34 lines
739 B
JavaScript
module.exports = {
|
|
DocsSidebar: [
|
|
{
|
|
type: 'doc',
|
|
id: 'intro',
|
|
label: '介绍',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
id: '视频教程',
|
|
label: '视频教程',
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: '快速开始',
|
|
collapsed: false,
|
|
items: ['快速开始/注册GitLink账号', '快速开始/登录GitLink账号'],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: '代码库管理',
|
|
collapsed: true,
|
|
items: ['代码库管理/仓库创建'],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: '第三方服务',
|
|
collapsed: true,
|
|
items: ['第三方服务/WebIDE', '第三方服务/跨平台代码同步'],
|
|
},
|
|
// 其他类别可以根据需要添加
|
|
],
|
|
};
|