aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/components/dropdowns/dropdown_products.tsx
blob: 366c00a1ed5c40cb7d580d52316378333d656c40 (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
import * as React from 'react';
import styled from 'styled-components';
import {Heading, Paragraph} from 'ts/@next/components/text';

export const DropdownProducts = () => (
    <List>
        <li>
            <Heading color="#000000" isNoMargin={true}>
                0x Instant
            </Heading>

            <Paragraph color="#5d5d5d" isNoMargin={true}>
                Simple crypto purchasing
            </Paragraph>
        </li>

        <li>
            <Heading color="#000000" isNoMargin={true}>
                0x Launch Kit
            </Heading>

            <Paragraph color="#5d5d5d" isNoMargin={true}>
                Build on the 0x protocol
            </Paragraph>
        </li>

        <li>
            <Heading color="#000000" isNoMargin={true}>
                Extensions
            </Heading>
        </li>
    </List>
);

const List = styled.ul`
    li {
        padding: 15px 30px;
    }
`;