import { JSX, ClassAttributes, HTMLAttributes } from "react";
export const mdxComponent = {
h1: (props: any) => (
<h2 {...props} className="large-text font-bold text-2xl">
{props.children}
</h2>
),
}