Skip to content

Commit f3ce0fb

Browse files
committed
page title fix
1 parent 1ec461f commit f3ce0fb

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/pages/tags/index.astro

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
import { BaseLayout } from '@/components/layouts'
3+
import { PageTitle } from '@/components/ui'
34
import { Tag } from '@/features/posts/components'
45
import { getAllTags } from '@/features/posts/lib'
56
@@ -24,11 +25,9 @@ const allTags = await getAllTags()
2425
}
2526
</style>
2627

27-
<BaseLayout
28-
title="Tags"
29-
pageTitle="All Tags"
30-
description="All tags used on this site"
31-
>
28+
<BaseLayout title="Tags" description="All tags used on this site">
29+
<PageTitle title="All Tags" />
30+
3231
<ul class="tags">
3332
{
3433
allTags

0 commit comments

Comments
 (0)