自定义博客内容
创建博客文章
文章创建步骤
- 在
blog
文件夹中创建新的.md
或.mdx
文件 - 文件命名格式:
YYYY-MM-DD-标题.md
- 添加文章头部信息:
---
slug: my-first-blog-post
title: 我的第一篇博客
authors: [你的名字]
tags: [标签1, 标签2]
---
这里是文章内容...
写作建议
- 使用清晰的文件名
- 添加适当的标签
- 写好文章摘要
- 使用Markdown格式化文本
添加自定义页面
创建关于页面
// src/pages/about.js
import React from 'react';
import Layout from '@theme/Layout';
export default function About() {
return (
<Layout title="关于">
<div
style={{
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
padding: '2rem',
}}>
<h1>关于我</h1>
<p>这里是关于页面的内容...</p>
</div>
</Layout>
);
}