blob: 3a500ff39cccf5914579fec7891c36082868af5e (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
import * as React from 'react';
import { Link as ReactRouterLink } from 'react-router-dom';
import styled from 'styled-components';
import { Column, Section, Wrap } from 'ts/@next/components/layout';
import { SiteWrap } from 'ts/@next/components/siteWrap';
import { Heading, Paragraph } from 'ts/@next/components/text';
export const NextAboutPress = () => (
<SiteWrap theme="light">
<Section>
<Wrap>
<Column colWidth="1/3">
<ChapterLink to="/next/about/mission">Our Mission</ChapterLink>
<ChapterLink to="/next/about/team">Team</ChapterLink>
<ChapterLink to="/next/about/press">Press</ChapterLink>
<ChapterLink to="/next/about/jobs">Jobs</ChapterLink>
</Column>
<Column colWidth="2/3">
<Heading size="medium">Press Highlights</Heading>
<Paragraph size="medium">Want to write about 0x? Get in touch, or download our press kit.</Paragraph>
<Wrap>
<Column colWidth="1/3">
<img src="/images/@next/press/logo-fortune.png" width="100" alt="Fortune"/>
</Column>
<Column colWidth="2/3">
<Paragraph isMuted={false}>The difference is that 0x is decentralized, operating as a series of anonymous nodes...</Paragraph>
<a href="#">Read Article</a>
</Column>
</Wrap>
<Wrap>
<Column colWidth="1/3">
<img src="/images/@next/press/logo-fortune.png" width="100" alt="Fortune"/>
</Column>
<Column colWidth="2/3">
<Paragraph isMuted={false}>The difference is that 0x is decentralized, operating as a series of anonymous nodes...</Paragraph>
<a href="#">Read Article</a>
</Column>
</Wrap>
<Wrap>
<Column colWidth="1/3">
<img src="/images/@next/press/logo-fortune.png" width="100" alt="Fortune"/>
</Column>
<Column colWidth="2/3">
<Paragraph isMuted={false}>The difference is that 0x is decentralized, operating as a series of anonymous nodes...</Paragraph>
<a href="#">Read Article</a>
</Column>
</Wrap>
<Wrap>
<Column colWidth="1/3">
<img src="/images/@next/press/logo-fortune.png" width="100" alt="Fortune"/>
</Column>
<Column colWidth="2/3">
<Paragraph isMuted={false}>The difference is that 0x is decentralized, operating as a series of anonymous nodes...</Paragraph>
<a href="#">Read Article</a>
</Column>
</Wrap>
</Column>
</Wrap>
</Section>
</SiteWrap>
);
const ChapterLink = styled(ReactRouterLink)`
font-size: 1.222222222rem;
display: block;
opacity: 0.8;
margin-bottom: 1.666666667rem;
&:first-child {
opacity: 1;
}
&:hover {
opacity: 1;
}
`;
|