aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/onboarding/intro_onboarding_step.tsx
blob: 3a27b6854185198512cf8e5fe324a6ab199de34b (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
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">
                <Image src="/images/fake_toggle.svg" height="50px" width="50px" />
                <Text> Unlock tokens </Text>
            </div>
        </Container>
    </div>
);