Files
2026-03-04 13:14:40 +08:00

53 lines
932 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 快速开始
本指南将帮助你在 5 分钟内创建你的第一个文档页面。
## 创建文档页面
### 1. 添加新页面
在 `app` 目录下创建新的 `.mdx` 文件:
```
app/
└── getting-started/
└── my-first-page.mdx # 新建文件
```
### 2. 编写内容
在 `my-first-page.mdx` 中添加内容:
```markdown
# 我的第一个页面
这是我的第一个文档页面!
## 功能特性
- 功能一
- 功能二
- 功能三
```
### 3. 更新导航
编辑 `app/getting-started/_meta.js`
```javascript
export default {
installation: "安装指南",
quickstart: "快速开始",
configuration: "配置说明",
"my-first-page": "我的页面"
}
```
### 4. 查看结果
刷新浏览器,你会在侧边栏看到新页面。
## 下一步
- [配置说明](/getting-started/configuration) - 了解如何自定义配置
- [基础概念](/guide/basics) - 学习更多使用技巧