Hello world

2021-10-23T08:15:48+08:00
这是第 次开发自己的 Blog,习以为常。
上一个博客遇到的问题
因为 Heroku 的免费 PostgreSQL 数据库延迟过高且限制连接数,导致访问博客体验极差。
现在已改为全静态内容,使用 MDX 编写文章。
依然存在的问题
内容太少,版面空荡,慢慢改...
这个页面用于测试 Markdown。
子标题
import {NextPage} from "next";
type PostProps = {
content: string;
};
const PostPage: NextPage<PostProps> = (prop) => {
return (
<div>
{prop.content}
</div>
)
}