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
|
import * as _ from 'lodash';
import * as React from 'react';
import styled from 'styled-components';
import {Section, Wrap, WrapCentered, WrapGrid} from 'ts/@next/components/layout';
import {Heading, Paragraph} from 'ts/@next/components/text';
interface ProjectLogo {
name: string;
imageUrl?: string;
}
const projects: ProjectLogo[] = [
{
name: 'Radar Relay',
imageUrl: '/images/@next/relayer-logos/logo_1.png',
},
{
name: 'Paradex',
imageUrl: '/images/@next/relayer-logos/logo_5.png',
},
{
name: 'Amadeus',
imageUrl: '/images/@next/relayer-logos/logo_3.png',
},
{
name: 'The Ocean X',
imageUrl: '/images/@next/relayer-logos/logo_4.png',
},
{
name: 'Paradex',
imageUrl: '/images/@next/relayer-logos/logo_5.png',
},
{
name: 'Decent EX',
imageUrl: '/images/@next/relayer-logos/logo_2.1.png',
},
{
name: 'dEX',
imageUrl: '/images/@next/relayer-logos/logo_2.2.png',
},
{
name: 'OpenRelay',
imageUrl: '/images/@next/relayer-logos/logo_2.3.png',
},
{
name: 'DDEX',
imageUrl: '/images/@next/relayer-logos/logo_2.png',
},
];
export const SectionLandingClients = () => (
<Section isPadLarge={true}>
<WrapCentered>
<Heading size="small">You're in good company</Heading>
</WrapCentered>
<WrapGrid width="narrow" isWrapped={true}>
{_.map(projects, (item: ProjectLogo, index) => (
<StyledProject key={`client-${index}`}>
<img src={item.imageUrl} alt={item.name} />
</StyledProject>
))}
</WrapGrid>
</Section>
);
const StyledProject = styled.div`
width: 90px;
height: 90px;
flex-shrink: 0;
margin: 30px;
img {
object-fit: contain;
width: 100%;
height: 100%;
}
`;
|