File tree Expand file tree Collapse file tree 1 file changed +4
-11
lines changed Expand file tree Collapse file tree 1 file changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ import CardList from "@/components/CardList"
12
12
import EthPriceCard from "@/components/EthPriceCard"
13
13
import EthVideo from "@/components/EthVideo"
14
14
import FeedbackCard from "@/components/FeedbackCard"
15
- import Heading from "@/components/Heading"
16
15
import HorizontalCard from "@/components/HorizontalCard"
17
16
import { TwImage } from "@/components/Image"
18
17
import InfoBanner from "@/components/InfoBanner"
@@ -66,6 +65,7 @@ const StyledCard = (props: ComponentProps<typeof Card>) => (
66
65
flex = "1 0 30%"
67
66
minW = "280px"
68
67
maxW = { { base : "full" , md : "46%" , lg : "31%" } }
68
+ bg = "background.base"
69
69
{ ...props }
70
70
/>
71
71
)
@@ -75,21 +75,14 @@ const Slogan = (props: ChildOnlyProp) => (
75
75
)
76
76
77
77
const Title = ( props : ChildOnlyProp ) => (
78
- < Heading
79
- as = "h1"
80
- fontSize = "sm"
81
- lineHeight = { 1.4 }
82
- letterSpacing = "0.04em"
83
- fontWeight = "500"
84
- mb = { 4 }
85
- textTransform = "uppercase"
86
- color = "textTableOfContents"
78
+ < h1
79
+ className = "mb-4 mt-0 text-md font-normal uppercase !leading-xs"
87
80
{ ...props }
88
81
/>
89
82
)
90
83
91
84
const Subtitle = ( props : ChildOnlyProp ) => (
92
- < Text className = "leading-xs text-body-medium" { ...props } />
85
+ < Text className = "mb-0 leading-xs text-body-medium" { ...props } />
93
86
)
94
87
95
88
const Text = ( { className, ...props } : HTMLAttributes < HTMLHeadingElement > ) => (
You can’t perform that action at this time.
0 commit comments