@@ -62,7 +62,7 @@ const GappedContent = (props: ChildOnlyProp) => (
62
62
/>
63
63
)
64
64
65
- const Content = ( props : ChildOnlyProp ) => (
65
+ const Content = ( props : HTMLAttributes < HTMLDivElement > ) => (
66
66
< div className = "w-full px-8 py-4" { ...props } />
67
67
)
68
68
@@ -139,7 +139,7 @@ const BuildBox = ({
139
139
...props
140
140
} : HTMLAttributes < HTMLHeadingElement > ) => (
141
141
< Container
142
- className = { cn ( "flex-1 flex-col bg-background-low p-8" , className ) }
142
+ className = { cn ( "flex-1 flex-col bg-background-highlight p-8" , className ) }
143
143
{ ...props }
144
144
/>
145
145
)
@@ -194,11 +194,11 @@ const Text = ({ className, ...props }: HTMLAttributes<HTMLHeadingElement>) => (
194
194
)
195
195
196
196
const Width60 = ( props : ChildOnlyProp ) => (
197
- < div className = "w-full flex-[300% ]" { ...props } />
197
+ < div className = "w-full flex-[3 ]" { ...props } />
198
198
)
199
199
200
200
const Width40 = ( props : ChildOnlyProp ) => (
201
- < Center className = "w-full flex-[200% ]" { ...props } />
201
+ < Center className = "w-full flex-[2 ]" { ...props } />
202
202
)
203
203
204
204
type RunANodeCard = {
@@ -329,7 +329,7 @@ const RunANodePage = () => {
329
329
</ div >
330
330
</ div >
331
331
332
- < Content >
332
+ < Content id = "what-is-a-node" >
333
333
< TwoColumnContent >
334
334
< Width60 >
335
335
< H2 >
@@ -414,7 +414,7 @@ const RunANodePage = () => {
414
414
415
415
< Divider />
416
416
417
- < Content >
417
+ < Content id = "getting-started" >
418
418
< H2 > { t ( "page-run-a-node-getting-started-title" ) } </ H2 >
419
419
< GappedContent >
420
420
< SoftwareHighlight className = "bg-[#ccfcff] dark:bg-[#293233]" >
@@ -493,7 +493,7 @@ const RunANodePage = () => {
493
493
< ul >
494
494
< li > { t ( "page-run-a-node-buy-fully-loaded-note-1" ) } </ li >
495
495
< li > { t ( "page-run-a-node-buy-fully-loaded-note-2" ) } </ li >
496
- < li className = "mb-0" >
496
+ < li className = "mb-0 font-bold " >
497
497
< code > { t ( "page-run-a-node-buy-fully-loaded-note-3" ) } </ code >
498
498
</ li >
499
499
</ ul >
@@ -537,7 +537,7 @@ const RunANodePage = () => {
537
537
</ MarginFlex >
538
538
</ Content >
539
539
540
- < Content >
540
+ < Content id = "build-your-own" >
541
541
< H2 > { t ( "page-run-a-node-build-your-own-title" ) } </ H2 >
542
542
543
543
< BuildContainer >
0 commit comments