Skip to content

Commit a9824b5

Browse files
changes/new features suggested by @mlodic
1 parent 12b78e3 commit a9824b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/blogs/[slug]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const PostLayout = ({ params }: { params: { slug: string } }) => {
2525
<time dateTime={post.date} className="font-SpaceGrotesk text-white py-5 opacity-70 text-sm md:text-md mb-5 ">
2626
{format(parseISO(post.date), 'LLLL d, yyyy')}
2727
</time>
28-
<h1 className="text-white font-SpaceGrotesk font-bold text-3xl md:text-6xl ">{post.title}</h1>
28+
<h1 className="text-white font-SpaceGrotesk font-bold text-3xl md:text-6xl pb-12">{post.title}</h1>
2929
<Image src={post.cover} width={100} height={100} alt={""} className="pb-12"></Image>
3030
</div>
3131
<div className="font-SpaceGrotesk text-white text-left py-5 opacity-70 text-md [&>*]:mb-3 [&>*:last-child]:mb-0" dangerouslySetInnerHTML={{ __html: post.body.html.replace(/<a/g, '<a style="color: #00ADEE;"'), }} />

0 commit comments

Comments
 (0)