From 461c7efc26edb2f80660b0ef98a27707bac2f86c Mon Sep 17 00:00:00 2001 From: Fred Carlsen Date: Fri, 14 Dec 2018 18:04:30 +0100 Subject: Link ecosystem --- packages/website/ts/@next/components/footer.tsx | 1 + packages/website/ts/@next/pages/ecosystem.tsx | 154 ++++++++++-------------- 2 files changed, 63 insertions(+), 92 deletions(-) (limited to 'packages/website') diff --git a/packages/website/ts/@next/components/footer.tsx b/packages/website/ts/@next/components/footer.tsx index a25b32595..beaf01479 100644 --- a/packages/website/ts/@next/components/footer.tsx +++ b/packages/website/ts/@next/components/footer.tsx @@ -49,6 +49,7 @@ const linkRows: LinkRows[] = [ { url: '#', text: 'Team' }, { url: '#', text: 'Jobs' }, { url: '#', text: 'Press Kit' }, + { url: '/next/ecosystem-program', text: 'Grant Program' }, ], }, { diff --git a/packages/website/ts/@next/pages/ecosystem.tsx b/packages/website/ts/@next/pages/ecosystem.tsx index 094d5e126..e6330ba67 100644 --- a/packages/website/ts/@next/pages/ecosystem.tsx +++ b/packages/website/ts/@next/pages/ecosystem.tsx @@ -1,18 +1,59 @@ +import * as _ from 'lodash'; import * as React from 'react'; import { colors } from 'ts/style/colors'; import {Button} from 'ts/@next/components/button'; -import { Column, Section, Wrap, WrapCentered } from 'ts/@next/components/layout'; +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 = () => (
- + Jumpstart your Business on 0x @@ -20,103 +61,32 @@ export const NextEcosystem = () => ( 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. - -
- -
- - - - Join a vibrant ecosystem of projects in the 0x Network. - - - - - {/* This */} - - - - Milestone Grants - - - 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. - - - - - - - VC Introductions - - - Connect with leading venture capital firms that could participate in your next funding round. - +
- - - - Technical Support +
+ + + Join a vibrant ecosystem of projects in the 0x Network. - - Receive ongoing technical assistance from knowledgeable and responsive 0x developers. - - - - - Recruiting Assistance - - - Grow your team by accessing an exclusive pool of top engineering and business operations talent. - - - - - - Marketing and Design Help - - - Get strategic advice on product positioning, customer acquisition, and UI/UX design that can impact the growth of your business. - - - - - - Legal Resources - - - Obtain important legal documents and resources that will help you navigate the regulatory landscape. - - - -
- -
- - - - - Apply for the program now + + {_.map(benefits, (benefit: BenefitProps, index) => ( + + + + {benefit.title} - - Have questions? Please join our Discord channel + + {benefit.description} - - - - - -
- - -
-
-
-
+ + ))} +
+
-); +); \ No newline at end of file -- cgit v1.2.3