File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import { serverSideTranslations } from "next-i18next/serverSideTranslations"
5
5
import {
6
6
Box ,
7
7
Center ,
8
+ Heading ,
8
9
ListItem ,
9
10
UnorderedList ,
10
11
useColorModeValue ,
@@ -103,18 +104,21 @@ const Subtitle = (props: ChildOnlyProp) => (
103
104
104
105
const SloganGradient = ( props : ChildOnlyProp ) => (
105
106
< Box
106
- fontWeight = "extrabold"
107
- fontSize = { { base : "2.5rem" , lg : "5xl" } }
108
- lineHeight = "xs"
109
107
maxW = "720px"
110
108
mt = "4"
111
- mb = "0"
112
109
bgClip = "text"
113
110
overflow = "auto"
114
111
sx = { { WebkitBackgroundClip : "text" , WebkitTextFillColor : "transparent" } }
115
112
bg = "upgradesGradient"
116
113
>
117
- < Text > { props . children } </ Text >
114
+ < Heading
115
+ as = "h1"
116
+ fontSize = { { base : "2.5rem" , lg : "5xl" } }
117
+ fontWeight = "800"
118
+ mb = "1.45rem"
119
+ >
120
+ { props . children }
121
+ </ Heading >
118
122
</ Box >
119
123
)
120
124
You can’t perform that action at this time.
0 commit comments