jonbio/app/page.tsx

10 lines
305 B
TypeScript
Raw Normal View History

import { sortPosts, allCoreContent } from 'pliny/utils/contentlayer'
2023-07-07 11:17:22 +08:00
import { allBlogs } from 'contentlayer/generated'
import Main from './Main'
export default async function Page() {
const sortedPosts = sortPosts(allBlogs)
2023-07-07 11:17:22 +08:00
const posts = allCoreContent(sortedPosts)
return <Main posts={posts} />
}