We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6818c2 commit c3d4657Copy full SHA for c3d4657
components/blog/BlogPostContent.tsx
@@ -12,7 +12,6 @@ export default function BlogPostContent({ content }: BlogPostContentProps) {
12
if (!content) return null;
13
return (
14
<div className="prose prose-lg max-w-none dark:prose-invert prose-headings:text-gray-900 dark:prose-headings:text-white prose-p:text-gray-700 dark:prose-p:text-gray-300 prose-a:text-blue-600 dark:prose-a:text-blue-400 prose-strong:text-gray-900 dark:prose-strong:text-white prose-code:text-gray-900 dark:prose-code:text-white prose-pre:bg-gray-100 dark:prose-pre:bg-gray-800 prose-headings:text-left prose-p:text-left">
15
- {/* @ts-expect-error Server Component MDXRemote */}
16
<MDXRemote source={content} components={components} />
17
</div>
18
);
0 commit comments