diff --git a/src/components/blog/SinglePost.astro b/src/components/blog/SinglePost.astro index 966c89f..02d257e 100644 --- a/src/components/blog/SinglePost.astro +++ b/src/components/blog/SinglePost.astro @@ -30,7 +30,7 @@ const { Content } = post; post.author && ( <> {' '} - ·{' '} + · {post.author} ) @@ -46,7 +46,13 @@ const { Content } = post; ) } - {post.readingTime && <> · {post.readingTime} min read} + { + post.readingTime && ( + <> +  · {post.readingTime} min read + + ) + }