From e67e96333bbe924dc66aaa33fba3e52d17fa3a23 Mon Sep 17 00:00:00 2001 From: Mythie Date: Mon, 25 Sep 2023 11:31:26 +1000 Subject: [PATCH] fix: dark mode for generic mdx content --- apps/marketing/src/app/(marketing)/[content]/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/marketing/src/app/(marketing)/[content]/page.tsx b/apps/marketing/src/app/(marketing)/[content]/page.tsx index 37d6d1b63..5c846e9f2 100644 --- a/apps/marketing/src/app/(marketing)/[content]/page.tsx +++ b/apps/marketing/src/app/(marketing)/[content]/page.tsx @@ -39,7 +39,7 @@ export default function ContentPage({ params }: { params: { content: string } }) const MDXContent = useMDXComponent(post.body.code); return ( -
+
);