Skip to content

Commit 6390049

Browse files
committed
Fix the title of the blog posts
1 parent 2220b95 commit 6390049

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/posts/[slug].astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ type Props = { post: CollectionEntry<"blog"> };
2121
const { post } = Astro.props;
2222
const { Content } = await post.render();
2323
---
24-
<BaseLayout description={CONFIG.meta.description}>
24+
<BaseLayout title={post.data.title} description={CONFIG.meta.description}>
2525
<div class="w-full pb-20">
2626
<div class="flex flex-row space-x-4 mb-6 text-sm text-secondaryDarker animate-slide-from-down-and-fade-1">
2727
<a

0 commit comments

Comments
 (0)