diff --git a/apps/website/app/[locale]/blog/[slug]/page.tsx b/apps/website/app/[locale]/blog/[slug]/page.tsx index 93589ec..0f4345f 100644 --- a/apps/website/app/[locale]/blog/[slug]/page.tsx +++ b/apps/website/app/[locale]/blog/[slug]/page.tsx @@ -113,6 +113,26 @@ export default async function BlogPostPage({ params }: Props) { {...props} /> ), + table: ({ node, ...props }) => ( +
+ + + ), + thead: ({ node, ...props }) => ( + + ), + tbody: ({ node, ...props }) => ( + + ), + tr: ({ node, ...props }) => ( + + ), + th: ({ node, ...props }) => ( +
+ ), + td: ({ node, ...props }) => ( + + ), img: ({ node, src, alt }) => (
{src && }