blob: f9ced73159eef3fb8d7f96a6525f5cd9ab7923df (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
import * as React from 'react';
import { Container } from 'ts/components/ui/container';
import { Image } from 'ts/components/ui/image';
import { Text } from 'ts/components/ui/text';
export interface IntroOnboardingStepProps {}
export const IntroOnboardingStep: React.StatelessComponent<IntroOnboardingStepProps> = () => (
<div className="flex items-center flex-column">
<Text>
In order to start trading on any 0x relayer in the 0x ecosystem, you need to complete three simple steps.
</Text>
<Container width="100%" marginTop="25px" marginBottom="15px" className="flex justify-around">
<div className="flex flex-column items-center">
<Image src="/images/ether.png" height="50px" width="50px" />
<Text> Add ETH </Text>
</div>
<div className="flex flex-column items-center">
<Image src="/images/eth_token.svg" height="50px" width="50x" />
<Text> Wrap ETH </Text>
</div>
<div className="flex flex-column items-center">
<Container marginBottom="9px">
<Image src="/images/lock_icon.svg" height="35px" width="35x" />
</Container>
<Text> Unlock tokens </Text>
</div>
</Container>
</div>
);
|