From 5bf7b9b8f3fb2780e56cb11fa9b9b48939a8041d Mon Sep 17 00:00:00 2001 From: Fred Carlsen Date: Mon, 3 Dec 2018 16:13:39 +0100 Subject: Added ecosystem page --- packages/website/ts/@next/pages/ecosystem.tsx | 117 ++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 packages/website/ts/@next/pages/ecosystem.tsx (limited to 'packages/website/ts/@next/pages') diff --git a/packages/website/ts/@next/pages/ecosystem.tsx b/packages/website/ts/@next/pages/ecosystem.tsx new file mode 100644 index 000000000..199c9038e --- /dev/null +++ b/packages/website/ts/@next/pages/ecosystem.tsx @@ -0,0 +1,117 @@ +import * as React from 'react'; +import styled from 'styled-components'; +import { Link as ReactRouterLink } from 'react-router-dom'; + +import { colors } from 'ts/style/colors'; + +import {Button} from 'ts/@next/components/button'; +import { Column, Section, Wrap, WrapCentered } from 'ts/@next/components/layout'; +import { SiteWrap } from 'ts/@next/components/siteWrap'; +import { Heading, Paragraph } from 'ts/@next/components/text'; +import { Image } from 'ts/@next/components/image'; + +import CoinIcon from 'ts/@next/icons/illustrations/coin.svg'; +import ConsistentlyShipIcon from 'ts/@next/icons/illustrations/consistently-ship.svg'; +import LongTermImpactIcon from 'ts/@next/icons/illustrations/long-term-impact.svg'; +import RightThingIcon from 'ts/@next/icons/illustrations/right-thing.svg'; + +export const NextEcosystem = () => ( + +
+ + Jumpstart your Business on 0x + 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. +
+ Get Started + Learn More +
+
+
+ +
+ + + Join a vibrant ecosystem of projects in the 0x Network. + + + + + + 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 + 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 + Have questions? Please join our Discord channel + + + + + +
+ + +
+
+
+
+
+
+); + +const BenefitsList = styled.ul` + color: #000; + list-style: disc; + columns: auto 2; + column-gap: 80px; + + li { + margin-bottom: 1em; + } +`; + +const ChapterLink = styled(ReactRouterLink)` + font-size: 1.222222222rem; + display: block; + opacity: 0.8; + margin-bottom: 1.666666667rem; + + &:first-child { + opacity: 1; + } + + &:hover { + opacity: 1; + } +`; -- cgit