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

所有文章

繼續往下滑,慢慢逛逛。

); }