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

所有文章

繼續往下滑,慢慢逛逛。

); }