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

const navData = [
        {
            title: '0x Instant',
            description: 'Simple crypto purchasing',
            url: '#',
        },
        {
            title: '0x Launch kit',
            description: 'Build on the 0x protocol',
            url: '#',
        },
        {
            title: 'Extensions',
            url: '#',
        },
];

export const DropdownProducts = () => (
    <List>
        {_.map(navData, (item, index) => (
            <li>
                <Heading color="#000000" isNoMargin={true} size="small">
                    {item.title}
                </Heading>

                {item.description &&
                    <Paragraph color="#5d5d5d" isNoMargin={true} size="small">
                        {item.description}
                    </Paragraph>
                }
            </li>
        ))}
    </List>
);

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