aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/components/sections/landing/cta.tsx
blob: 2f853f95b5d9807d1a5b49ea4fd2cd4de33c66de (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import * as React from 'react';
import {Button, ButtonWrap, Link} from 'ts/@next/components/button';
import {Icon, InlineIconWrap} from 'ts/@next/components/icon';
import {Column, Section, Wrap, WrapCentered, WrapGrid} from 'ts/@next/components/layout';
import {Heading, Paragraph} from 'ts/@next/components/text';

export const SectionLandingCta = () => (
    <Section>
        <Wrap>
            <Column
                bgColor="#003831"
                colWidth="1/2"
                isPadLarge={true}
            >
                <WrapCentered>
                    <Icon
                        name="ready-to-build"
                        size="large"
                        margin={[0, 0, 'default', 0]}
                    />

                    <Paragraph size="medium" color="#00AE99">
                        Ready to build on 0x?
                    </Paragraph>

                    <Link
                        href="#"
                        isTransparent={true}
                        isWithArrow={true}
                    >
                        Get Started
                    </Link>
                </WrapCentered>
            </Column>

            <Column
                bgColor="#003831"
                colWidth="1/2"
                isPadLarge={true}
            >
                <WrapCentered>
                    <Icon
                        name="ready-to-build"
                        size="large"
                        margin={[0, 0, 'default', 0]}
                    />

                    <Paragraph size="medium" color="#00AE99">
                        Want help from the 0x team?
                    </Paragraph>

                    <Link
                        href="#"
                        isTransparent={true}
                        isWithArrow={true}
                    >
                        Get in Touch
                    </Link>
                </WrapCentered>
            </Column>
        </Wrap>
    </Section>
);