use @next/mdx

This commit is contained in:
Thomas Ruoff
2024-03-13 23:13:21 +01:00
parent 573b06d72d
commit 0486b99b3e
13 changed files with 2927 additions and 903 deletions

4
components/mdx.tsx Normal file
View File

@@ -0,0 +1,4 @@
export default function Mdx({ children }: { children: React.ReactNode }) {
// Create any shared layout or styles here
return <div className="markdown-body">{children}</div>
}