import { MDXRemote } from 'next-mdx-remote/rsc' import rehypeAutolinkHeadings from 'rehype-autolink-headings' import rehypeSlug from 'rehype-slug-custom-id' import { components } from './mdx-components' // import rehypeHighlight from 'rehype-highlight' interface MdxProps { content: string } export function Mdx({ content }: MdxProps) { return ( ) }