aboutsummaryrefslogblamecommitdiffstats
path: root/packages/website/ts/@next/components/dropdowns/dropdown_products.tsx
blob: 9551dd802b25c6633e3bf66a7c713e416e598c61 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                            
                               
 
                                      


                                                            



                                                    
                                    











                                                    

                                       
                                          
                                             
                                    





                                         

                                    
 
                                        





                                             



                                              

                 



                       
       
                           
                       
                       

     
import * as _ from 'lodash';
import * as React from 'react';

import {Link} from 'react-router-dom';
import styled from 'styled-components';
import {Heading, Paragraph} from 'ts/@next/components/text';

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

export const DropdownProducts = () => (
    <List>
        {_.map(navData, (item, index) => (
            <li key={`productLink-${index}`}>
                <Link to={item.url}>
                    <Heading
                        asElement="h3"
                        color="inherit"
                        isNoMargin={true}
                        size="small"
                    >
                        {item.title}
                    </Heading>

                    {item.description &&
                        <Paragraph
                            color="inherit"
                            isNoMargin={true}
                            size="small"
                            isMuted={0.5}
                        >
                            {item.description}
                        </Paragraph>
                    }
                </Link>
            </li>
        ))}
    </List>
);

const List = styled.ul`
    a {
        padding: 15px 30px;
        display: block;
        color: inherit;
    }
`;