We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 887810c commit a242bd8Copy full SHA for a242bd8
src/app/(app)/posts/page.tsx
@@ -1,7 +1,6 @@
1
import { Container } from '@/components/Container';
2
import { AspectRatio } from '@/components/ui/aspect-ratio';
3
import { Separator } from '@/components/ui/separator';
4
-import { baseSiteConfig } from '@/config/site';
5
import { cn } from '@/lib/utils';
6
import { allPosts, type Post } from 'contentlayer/generated';
7
import dayjs from 'dayjs';
@@ -61,7 +60,7 @@ function PostCard({ post, showCover }: { post: Post; showCover?: boolean }) {
61
60
</Link>
62
);
63
}
64
-const title = '我的博客列表 | ' + baseSiteConfig.authors;
+const title = '我的博客列表 | ';
65
const description =
66
'记录在编程学习、工作中遇到的问题。我精心整理为技术博客文章合集,涵盖前端开发、React、Next.js等热门话题。发现实用的开发技巧、最佳实践和行业动态,提升您的开发技能。立即浏览最新文章!';
67
export const metadata = {
0 commit comments