File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change 1
1
/* eslint-disable react/jsx-key */
2
- import { Center } from "@chakra-ui/react"
3
-
4
- import { Image } from "@/components/Image"
2
+ import { TwImage } from "@/components/Image"
5
3
import OrderedList from "@/components/OrderedList"
6
4
import Translation from "@/components/Translation"
5
+ import { Center } from "@/components/ui/flex"
7
6
8
7
import image from "@/public/images/hackathon_transparent.png"
9
8
@@ -27,12 +26,9 @@ const StakingHowSoloWorks = () => {
27
26
]
28
27
29
28
return (
30
- < Center
31
- flexDirection = { { base : "column" , md : "row" } }
32
- justifyContent = "space-between"
33
- >
29
+ < Center className = "flex-col justify-between md:flex-row" >
34
30
< OrderedList listData = { items } />
35
- < Image src = { image } alt = "" width = { 400 } />
31
+ < TwImage src = { image } alt = "" width = { 400 } />
36
32
</ Center >
37
33
)
38
34
}
You can’t perform that action at this time.
0 commit comments