Initial commit

This commit is contained in:
2025-05-06 23:09:47 +02:00
commit 89e98efb7d
79 changed files with 6948 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import { MDXRemote } from "next-mdx-remote/rsc"
interface MDXContentProps {
content: string
}
export function MDXContent({ content }: MDXContentProps) {
return <MDXRemote source={content} />
}