"use client"; // This is required! import { MDXRemote, type MDXRemoteSerializeResult } from "next-mdx-remote"; type MdxContentProps = { source: MDXRemoteSerializeResult; }; /** Place your custom MDX components here */ const MdxComponents = { /** h1 colored in yellow */ h1: (props: React.HTMLProps) => (

), /** Card component */ Card: (props: React.HTMLProps) => (
), }; export function MdxContent({ source }: MdxContentProps) { return ; }