Skip to content

Commit

Permalink
fix: moves tags to the bottom
Browse files Browse the repository at this point in the history
  • Loading branch information
kenodressel committed May 15, 2024
1 parent 8680688 commit fc649e8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/app/(header-footer)/blog/[postId]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,16 +73,16 @@ export default async function BlogPost({ params: { postId } }: BlogPostProps) {
return (
<div className='flex flex-col'>
<div className='markdown-body blog-post'>
<div className='mb-5 border-b pb-2'>
<h1 className='mb-0'>{meta.title}</h1>
<div className='mb-5 pb-2'>
<h1 className='mb-0 border-b-0'>{meta.title}</h1>
<span className='text-sm font-light'>
Published on {pubDate} by {meta.author}
</span>
<div className='flex flex-row gap-2 text-sm font-light'>
Tags: {tags}
</div>
</div>
<article className='border-b'>{content}</article>
<div className='mt-4 flex flex-row gap-2 text-sm font-light'>
Tags: {tags}
</div>
</div>
<div className='my-10 flex flex-col items-center justify-between gap-10 lg:flex-row'>
<NextPostLink
Expand Down

0 comments on commit fc649e8

Please sign in to comment.