@@ -24,14 +24,14 @@ export function useMDXComponents(components) {
2424 return {
2525 h1 : ( props ) => (
2626 < h1
27- className = "my-6 text-4xl font-bold dark:text-slate-100"
27+ className = "my-6 text-4xl font-bold tracking-tight dark:text-slate-100"
2828 { ...props }
2929 />
3030 ) ,
3131 h2 : ( props ) => (
3232 < h2
3333 className = { cn (
34- "font-semibold dark:text-slate-100" ,
34+ "font-semibold tracking-tight dark:text-slate-100" ,
3535 "mt-6 border-b pb-1 text-3xl border-neutral-200/70 contrast-more:border-neutral-400 dark:border-primary-100/10 contrast-more:dark:border-neutral-400"
3636 ) }
3737 { ...props }
@@ -40,7 +40,7 @@ export function useMDXComponents(components) {
4040 h3 : ( props ) => (
4141 < h3
4242 className = { cn (
43- "font-semibold dark:text-slate-100" ,
43+ "font-semibold tracking-tight dark:text-slate-100" ,
4444 "mt-8 text-2xl"
4545 ) }
4646 { ...props }
@@ -49,7 +49,7 @@ export function useMDXComponents(components) {
4949 h4 : ( props ) => (
5050 < h4
5151 className = { cn (
52- "font-semibold dark:text-slate-100" ,
52+ "font-semibold tracking-tight dark:text-slate-100" ,
5353 "mt-8 text-xl"
5454 ) }
5555 { ...props }
@@ -58,7 +58,7 @@ export function useMDXComponents(components) {
5858 h5 : ( props ) => (
5959 < h5
6060 className = { cn (
61- "font-semibold dark:text-slate-100" ,
61+ "font-semibold tracking-tight dark:text-slate-100" ,
6262 "mt-8 text-lg"
6363 ) }
6464 { ...props }
@@ -67,7 +67,7 @@ export function useMDXComponents(components) {
6767 h6 : ( props ) => (
6868 < h6
6969 className = { cn (
70- "font-semibold dark:text-slate-100" ,
70+ "font-semibold tracking-tight dark:text-slate-100" ,
7171 "mt-8 text-base"
7272 ) }
7373 { ...props }
0 commit comments