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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
import * as _ from 'lodash';
import * as React from 'react';
import styled from 'styled-components';
import {Heading} from 'ts/@next/components/text';
import {Section, WrapGrid} from 'ts/@next/components/newLayout';
interface ProjectLogo {
name: string;
imageUrl?: string;
persistOnMobile?: boolean;
}
interface StyledProjectInterface {
isOnMobile?: boolean;
}
const projects: ProjectLogo[] = [
{
name: 'Radar Relay',
imageUrl: 'images/@next/clients/radar-relay.svg',
persistOnMobile: true,
},
{
name: 'Paradex',
imageUrl: 'images/@next/clients/paradex.svg',
persistOnMobile: true,
},
{
name: 'Star Bit Ex',
imageUrl: 'images/@next/clients/starbitex.svg',
},
{
name: 'LedgerDex',
imageUrl: 'images/@next/clients/ledgerdex.svg',
},
{
name: 'OpenRelay',
imageUrl: 'images/@next/clients/openrelay.svg',
persistOnMobile: true,
},
{
name: 'Bamboo Relay',
imageUrl: 'images/@next/clients/bamboo.svg',
persistOnMobile: true,
},
{
name: 'Shark Relay',
imageUrl: 'images/@next/clients/sharkrelay.svg',
persistOnMobile: true,
},
{
name: 'dEX',
imageUrl: 'images/@next/clients/ercdex.svg',
persistOnMobile: true,
},
];
export const SectionLandingClients = () => (
<Section isTextCentered={true}>
<Heading size="small">
Join the growing number of projects developing on 0x
</Heading>
<WrapGrid isWrapped={true}>
{_.map(projects, (item: ProjectLogo, index) => (
<StyledProject
key={`client-${index}`}
isOnMobile={item.persistOnMobile}
>
<img src={item.imageUrl} alt={item.name} />
</StyledProject>
))}
</WrapGrid>
</Section>
);
const StyledProject = styled.div<StyledProjectInterface>`
flex-shrink: 0;
img {
object-fit: contain;
width: 100%;
height: 100%;
}
@media (min-width: 768px) {
width: auto;
height: 50px;
margin: 30px;
}
@media (max-width: 768px) {
width: auto;
height: 42px;
margin: 15px;
display: ${props => !props.isOnMobile && 'none'};
}
`;
|