jonbio/app/page.tsx

11 lines
376 B
TypeScript
Raw Normal View History

2023-07-07 11:17:22 +08:00
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} />
}