@@ -82,7 +82,7 @@ export default function ReactComponentLayout({data}) {
82
82
return (
83
83
< BaseLayout title = { title } description = { description } >
84
84
< Box sx = { { maxWidth : 1200 , width : '100%' , p : [ 4 , 5 , 6 , 7 ] , mx : 'auto' } } >
85
- < Heading as = "h1" > { title } </ Heading >
85
+ < Heading as = "h1" sx = { { fontSize : 7 } } > { title } </ Heading >
86
86
{ description ? (
87
87
< Text as = "p" sx = { { fontSize : 3 , m : 0 , mb : 3 , maxWidth : '60ch' } } >
88
88
{ description }
@@ -97,7 +97,7 @@ export default function ReactComponentLayout({data}) {
97
97
current = "react"
98
98
/>
99
99
</ Box >
100
- < Box sx = { { display : 'flex' , flexDirection : 'row-reverse' , alignItems : 'start' , gap : 4 } } >
100
+ < Box sx = { { display : 'flex' , flexDirection : 'row-reverse' , alignItems : 'start' , gap : [ null , 7 , 8 , 9 ] } } >
101
101
< Box
102
102
sx = { {
103
103
width : 220 ,
@@ -108,7 +108,7 @@ export default function ReactComponentLayout({data}) {
108
108
display : [ 'none' , null , 'block' ] ,
109
109
} }
110
110
>
111
- < Heading as = "h3" sx = { { fontSize : 2 , display : 'inline-block' , fontWeight : 'bold' , pl : 3 } } id = "toc-heading" >
111
+ < Heading as = "h3" sx = { { fontSize : 1 , display : 'inline-block' , fontWeight : 'bold' , pl : 3 } } id = "toc-heading" >
112
112
On this page
113
113
</ Heading >
114
114
< TableOfContents aria-labelledby = "toc-heading" items = { tableOfContents . items } />
@@ -188,7 +188,7 @@ export default function ReactComponentLayout({data}) {
188
188
< Box
189
189
sx = { { flexDirection : 'row' , justifyContent : 'space-between' , alignItems : 'center' , display : 'flex' } }
190
190
>
191
- < Heading as = "h3" sx = { { fontSize : 2 , fontWeight : 'bold' } } id = "toc-heading-narrow" >
191
+ < Heading as = "h3" sx = { { fontSize : 1 , fontWeight : 'bold' } } id = "toc-heading-narrow" >
192
192
On this page
193
193
</ Heading >
194
194
</ Box >
0 commit comments