this repo has no description www.baileykane.co/
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Dark published date text, add spacing

BK610 84aeb231 ec35949b

+10 -4
+10 -4
components/BlogPostContent.tsx
··· 26 26 const markdownContent = micromark(content || "Coming soon."); 27 27 28 28 return ( 29 - <div 30 - className="mt-4 w-full max-w-none prose prose-stone dark:prose-invert leading-relaxed" 31 - dangerouslySetInnerHTML={{ __html: markdownContent }} 32 - /> 29 + <div> 30 + <p className="text-sm text-stone-500 dark:text-stone-400"> 31 + Published on {formattedPublishedDate} 32 + </p> 33 + <h1 className="mt-4">{blogPost.title}</h1> 34 + <div 35 + className="mt-4 w-full max-w-none prose prose-stone dark:prose-invert leading-relaxed" 36 + dangerouslySetInnerHTML={{ __html: markdownContent }} 37 + /> 38 + </div> 33 39 ); 34 40 }