Add aesthetic timeline to post lists

This commit is contained in:
2025-11-19 00:54:58 +08:00
parent 10e4e7e21e
commit fe191752da
5 changed files with 26 additions and 5 deletions

View File

@@ -151,11 +151,11 @@ export function PostListWithControls({ posts, pageSize }: Props) {
</div>
) : (
<ul className="space-y-3">
<div className="space-y-3">
{currentPosts.map((post) => (
<PostListItem key={post._id} post={post} />
))}
</ul>
</div>
)}
{totalPages > 1 && currentPosts.length > 0 && (