mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
19 lines
596 B
TypeScript
19 lines
596 B
TypeScript
import {allBlogPosts} from "contentlayer/generated";
|
|
import {compareDesc} from "date-fns";
|
|
|
|
import {BlogPostList} from "@/components/blog-post";
|
|
|
|
export default function Blog() {
|
|
const posts = allBlogPosts.sort((a, b) => compareDesc(new Date(a.date), new Date(b.date)));
|
|
|
|
return (
|
|
<div className="w-full lg:px-16 mt-12">
|
|
<div className="text-center">
|
|
<h1 className="mb-2 font-bold text-4xl">NextUI Latest Updates</h1>
|
|
<h5 className="text-default-500 text-lg">All the latest news about NextUI.</h5>
|
|
</div>
|
|
<BlogPostList posts={posts} />
|
|
</div>
|
|
);
|
|
}
|