@@ -14,7 +14,7 @@ export function Heading(props: {
1414 return (
1515 < h1
1616 className = { cn (
17- "mb-5 break-words font-bold text-3xl text-foreground tracking-tight" ,
17+ "mb-5 break-words font-semibold text-3xl text-foreground tracking-tight" ,
1818 props . className ,
1919 ) }
2020 data-noindex = { props . noIndex }
@@ -27,13 +27,13 @@ export function Heading(props: {
2727 case 2 : {
2828 return (
2929 < Anchor
30- className = { cn ( "mt-7 mb-2 " , props . anchorClassName ) }
30+ className = { cn ( "mt-10 mb-3 " , props . anchorClassName ) }
3131 data-noindex = { props . noIndex }
3232 id = { props . anchorId }
3333 >
3434 < h2
3535 className = { cn (
36- "break-words font-semibold text-2xl text-foreground tracking-tight" ,
36+ "break-words font-medium text-xl text-foreground tracking-tight" ,
3737 props . className ,
3838 ) }
3939 >
@@ -46,13 +46,13 @@ export function Heading(props: {
4646 case 3 : {
4747 return (
4848 < Anchor
49- className = { cn ( "mt-7 mb-3" , props . anchorClassName ) }
49+ className = { cn ( "mt-10 mb-3" , props . anchorClassName ) }
5050 data-noindex = { props . noIndex }
5151 id = { props . anchorId }
5252 >
5353 < h3
5454 className = { cn (
55- "break-words font-semibold text-foreground text-xl" ,
55+ "break-words font-medium text-foreground text-xl" ,
5656 props . className ,
5757 ) }
5858 >
@@ -65,13 +65,13 @@ export function Heading(props: {
6565 case 4 : {
6666 return (
6767 < Anchor
68- className = { cn ( "mt-7 mb-3" , props . anchorClassName ) }
68+ className = { cn ( "mt-8 mb-3" , props . anchorClassName ) }
6969 data-noindex = { props . noIndex }
7070 id = { props . anchorId }
7171 >
7272 < h4
7373 className = { cn (
74- "break-words font-semibold text-foreground text-lg" ,
74+ "break-words font-medium text-foreground text-lg" ,
7575 props . className ,
7676 ) }
7777 >
@@ -84,13 +84,13 @@ export function Heading(props: {
8484 case 5 : {
8585 return (
8686 < Anchor
87- className = { cn ( "mt-7 mb-3" , props . anchorClassName ) }
87+ className = { cn ( "mt-8 mb-3" , props . anchorClassName ) }
8888 data-noindex = { props . noIndex }
8989 id = { props . anchorId }
9090 >
9191 < h5
9292 className = { cn (
93- "break-words font-semibold text-foreground text-lg" ,
93+ "break-words font-medium text-foreground text-lg" ,
9494 props . className ,
9595 ) }
9696 >
@@ -103,13 +103,13 @@ export function Heading(props: {
103103 default : {
104104 return (
105105 < Anchor
106- className = { cn ( "mt-7 mb-3" , props . anchorClassName ) }
106+ className = { cn ( "mt-8 mb-3" , props . anchorClassName ) }
107107 data-noindex = { props . noIndex }
108108 id = { props . anchorId }
109109 >
110110 < h6
111111 className = { cn (
112- "break-words font-semibold text-foreground text-lg" ,
112+ "break-words font-medium text-foreground text-lg" ,
113113 props . className ,
114114 ) }
115115 >
0 commit comments