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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
import * as _ from 'lodash';
import * as React from 'react';
import styled from 'styled-components';
import { colors } from 'ts/style/colors';
import {Button} from 'ts/@next/components/button';
import { Column, Section, WrapGrid } from 'ts/@next/components/newLayout';
import { SiteWrap } from 'ts/@next/components/siteWrap';
import { Heading, Paragraph } from 'ts/@next/components/text';
import { Icon } from 'ts/@next/components/icon';
import RightThingIcon from 'ts/@next/icons/illustrations/right-thing.svg';
interface BenefitProps {
title: string;
icon: string;
description: string;
}
const benefits: BenefitProps[] = [
{
icon: 'milestoneGrants',
title: 'Milestone Grants',
description: 'Receive non-dilutive capital ranging from $10,000 to $100,000, with grant sizes awarded based on the quality of your team, vision, execution, and community involvement.',
},
{
icon: 'vcIntroductions',
title: 'VC Introductions',
description: 'Connect with leading venture capital firms that could participate in your next funding round.',
},
{
icon: 'techSupport',
title: 'Technical Support',
description: 'Receive ongoing technical assistance from knowledgeable and responsive 0x developers.',
},
{
icon: 'recruitingSupport',
title: 'Recruiting Assistance',
description: 'Grow your team by accessing an exclusive pool of top engineering and business operations talent.',
},
{
icon: 'eficientDesign',
title: 'Marketing and Design Help',
description: 'Get strategic advice on product positioning, customer acquisition, and UI/UX design that can impact the growth of your business.',
},
{
icon: 'legalResources',
title: 'Legal Resources',
description: 'Access important legal resources that will help you navigate the regulatory landscape.',
},
];
export const NextEcosystem = () => (
<SiteWrap theme="light">
<Section isTextCentered={true}>
<Column>
<Heading size="medium" isCentered={true}>
Jumpstart your Business on 0x
</Heading>
<Paragraph size="medium" isCentered={true} isMuted={true} marginBottom="0">
The Ecosystem Acceleration Program gives teams access to a variety of services including funding, personalized technical support, and recruiting assistance. We created the Ecosystem Acceleration Program to bolster the expansion of both infrastructure projects and relayers building on 0x.
</Paragraph>
<LinkWrap>
<Button
to="#"
isWithArrow={true}
isAccentColor={true}
>
Apply now
</Button>
<Button
to="#"
isWithArrow={true}
isAccentColor={true}
>
Learn More
</Button>
</LinkWrap>
</Column>
</Section>
<Section bgColor={colors.backgroundLight} isFullWidth={true}>
<Column>
<Heading size={34} fontWeight="400" asElement="h2" isCentered={true} maxWidth="507px" marginBottom="70px">
Join a vibrant ecosystem of projects in the 0x Network.
</Heading>
</Column>
<WrapGrid isTextCentered={true} isWrapped={true} isFullWidth={true}>
{_.map(benefits, (benefit: BenefitProps, index) => (
<Column key={`benefit-${index}`} width="33%" padding="0 45px 30px">
<Icon name={benefit.icon} size="medium" margin={[0, 0, 'small', 0]} />
<Heading color={colors.textDarkPrimary} size="small" marginBottom="10px" isCentered={true}>
{benefit.title}
</Heading>
<Paragraph isMuted={true} isCentered={true}>
{benefit.description}
</Paragraph>
</Column>
))}
</WrapGrid>
</Section>
</SiteWrap>
);
const LinkWrap = styled.div`
display: inline-flex;
margin-top: 60px;
a + a {
margin-left: 60px;
}
`;
|