Skip to content

Commit a242bd8

Browse files
committed
fix: title
1 parent 887810c commit a242bd8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/app/(app)/posts/page.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { Container } from '@/components/Container';
22
import { AspectRatio } from '@/components/ui/aspect-ratio';
33
import { Separator } from '@/components/ui/separator';
4-
import { baseSiteConfig } from '@/config/site';
54
import { cn } from '@/lib/utils';
65
import { allPosts, type Post } from 'contentlayer/generated';
76
import dayjs from 'dayjs';
@@ -61,7 +60,7 @@ function PostCard({ post, showCover }: { post: Post; showCover?: boolean }) {
6160
</Link>
6261
);
6362
}
64-
const title = '我的博客列表 | ' + baseSiteConfig.authors;
63+
const title = '我的博客列表 | ';
6564
const description =
6665
'记录在编程学习、工作中遇到的问题。我精心整理为技术博客文章合集,涵盖前端开发、React、Next.js等热门话题。发现实用的开发技巧、最佳实践和行业动态,提升您的开发技能。立即浏览最新文章!';
6766
export const metadata = {

0 commit comments

Comments
 (0)