From a65740ea2c73f128d4e4c18eceda78957eef6558 Mon Sep 17 00:00:00 2001 From: Krishna Ayyalasomayajula Date: Mon, 1 Jun 2026 21:34:04 -0500 Subject: [PATCH] style: update MDX component headings to use heading-xl/lg/md utilities --- mdx-components.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mdx-components.tsx b/mdx-components.tsx index 97e1948..a286ff7 100644 --- a/mdx-components.tsx +++ b/mdx-components.tsx @@ -5,17 +5,17 @@ export function useMDXComponents(components: MDXComponents): MDXComponents { ...components, // Typography h1: (props) => ( -

+

{props.children}

), h2: (props) => ( -

+

{props.children}

), h3: (props) => ( -

+

{props.children}

),