Ivan Li
3932a2b612
Some checks failed
🚀 Build and deploy by ftp / 🎉 Deploy (push) Failing after 8m21s
10 lines
311 B
TypeScript
10 lines
311 B
TypeScript
import { sortPosts, allCoreContent } from 'pliny/utils/contentlayer';
|
|
import { allBlogs } from 'contentlayer/generated';
|
|
import Main from './Main';
|
|
|
|
export default async function Page() {
|
|
const sortedPosts = sortPosts(allBlogs);
|
|
const posts = allCoreContent(sortedPosts);
|
|
return <Main posts={posts} />;
|
|
}
|