diff --git a/app/posts/[slug]/page.tsx b/app/posts/[slug]/page.tsx index f8c29ba..616e70f 100644 --- a/app/posts/[slug]/page.tsx +++ b/app/posts/[slug]/page.tsx @@ -47,9 +47,19 @@ export default async function PostPage({ params }: { params: Promise<{ slug: str

{post.title}

-

- {post.readingTime} min read -

+
+ {post.author && by {post.author}} + {post.readingTime} min read +
+ {post.tags.length > 0 && ( +
+ {post.tags.map((tag) => ( + + {tag} + + ))} +
+ )}
{title} + {tags && tags.length > 0 && ( +
+ {tags.slice(0, 3).map((tag) => ( + + {tag} + + ))} +
+ )} {excerpt && ( -

{excerpt}

+

{excerpt}

)}