aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/components/dropdowns/dropdown_developers.tsx
blob: a9cfed538212c8ff36226dcd7479a8744029ad17 (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
import * as React from 'react';
import styled from 'styled-components';

import {Link} from 'react-router-dom';
import {WrapGrid} from 'ts/@next/components/layout';
import {Heading} from 'ts/@next/components/text';

export const DropdownDevelopers = () => (
    <>
        <Wrap>
            <Heading size="small" color="#5d5d5d">
                Getting Started
            </Heading>

            <WrapGrid isCentered={false} isWrapped={true}>
                <Link to="#">Build a relayer</Link>
                <Link to="#">Develop on Ethereum</Link>
                <Link to="#">Make & take orders</Link>
                <Link to="#">Use networked liquidity</Link>
            </WrapGrid>
        </Wrap>

        <Wrap>
            asdf
        </Wrap>
    </>
);

const Wrap = styled.div`
    padding: 15px 30px;
`;

const StyledLink = styled(Link)`
    width: calc(50% - 15px);
    flex-shrink: 0;
    color: #000000;
`;