import { getAllPostsSorted } from '@/lib/posts'; import { PostListItem } from '@/components/post-list-item'; export const metadata = { title: '所有文章' }; export default function BlogIndexPage() { const posts = getAllPostsSorted(); return (

所有文章

); }