2023-07-26 00:49:18 +08:00
|
|
|
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() {
|
2023-07-26 00:49:18 +08:00
|
|
|
const sortedPosts = sortPosts(allBlogs)
|
2023-07-07 11:17:22 +08:00
|
|
|
const posts = allCoreContent(sortedPosts)
|
|
|
|
return <Main posts={posts} />
|
|
|
|
}
|