refactor: migrate to rsc and app dir

This commit is contained in:
Timothy Lin
2023-07-07 11:17:22 +08:00
parent a03d358ef9
commit 09ba0550ca
121 changed files with 13431 additions and 12945 deletions

10
app/page.tsx Normal file
View File

@@ -0,0 +1,10 @@
import { sortedBlogPost, allCoreContent } from 'pliny/utils/contentlayer'
import { allBlogs } from 'contentlayer/generated'
import type { Blog } from 'contentlayer/generated'
import Main from './Main'
export default async function Page() {
const sortedPosts = sortedBlogPost(allBlogs) as Blog[]
const posts = allCoreContent(sortedPosts)
return <Main posts={posts} />
}