Fix date and read time on Blog Posts

This commit is contained in:
2026-04-16 01:06:26 -07:00
parent f3eb83bcc0
commit f6275e4f58
4 changed files with 8 additions and 15 deletions

View File

@@ -19,7 +19,7 @@ interface PostProps {
export function Post({ children, meta }: PostProps) {
const { previousPost, nextPost } = meta;
return (
<main>
<article className="blog-post">
@@ -47,7 +47,7 @@ export function Post({ children, meta }: PostProps) {
{meta.readingTime &&
<>
<span className="meta-separator"></span>
<span>{meta.readingTime}</span>
<span>{meta.readingTime} min read</span>
</>
}
</div>