feat: update privacy content

This commit is contained in:
David Nguyen
2023-07-28 11:07:01 +10:00
committed by Mythie
parent 79684c9970
commit 3f322d1d0c
2 changed files with 250 additions and 254 deletions

View File

@ -38,5 +38,9 @@ export default function ContentPage({ params }: { params: { content: string } })
const MDXContent = useMDXComponent(post.body.code);
return <MDXContent components={mdxComponents} />;
return (
<article className="prose prose-slate mx-auto">
<MDXContent components={mdxComponents} />
</article>
);
}