Files
blog-nextjs/app/blog/page.tsx
2025-11-19 17:38:45 +08:00

29 lines
865 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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 (
<section className="space-y-4">
<SidebarLayout>
<header className="space-y-1">
<h1 className="type-title font-semibold text-slate-900 dark:text-slate-50">
</h1>
<p className="type-small text-slate-500 dark:text-slate-400">
</p>
</header>
<PostListWithControls posts={posts} />
</SidebarLayout>
</section>
);
}