aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website
diff options
context:
space:
mode:
authorSteve Klebanoff <steve.klebanoff@gmail.com>2018-12-18 08:14:30 +0800
committerSteve Klebanoff <steve.klebanoff@gmail.com>2018-12-18 08:14:30 +0800
commit43cc7b6626a2de2b61095b2432f1f9f66bee3ee5 (patch)
tree87c51b354f395804912dce3798dbb9b86b6930b7 /packages/website
parent5defa94902ac22a9a3ac476cfe165ec41067de34 (diff)
downloaddexon-sol-tools-43cc7b6626a2de2b61095b2432f1f9f66bee3ee5.tar
dexon-sol-tools-43cc7b6626a2de2b61095b2432f1f9f66bee3ee5.tar.gz
dexon-sol-tools-43cc7b6626a2de2b61095b2432f1f9f66bee3ee5.tar.bz2
dexon-sol-tools-43cc7b6626a2de2b61095b2432f1f9f66bee3ee5.tar.lz
dexon-sol-tools-43cc7b6626a2de2b61095b2432f1f9f66bee3ee5.tar.xz
dexon-sol-tools-43cc7b6626a2de2b61095b2432f1f9f66bee3ee5.tar.zst
dexon-sol-tools-43cc7b6626a2de2b61095b2432f1f9f66bee3ee5.zip
Ecosystem links
Diffstat (limited to 'packages/website')
-rw-r--r--packages/website/ts/@next/pages/ecosystem.tsx16
-rw-r--r--packages/website/ts/utils/constants.ts2
2 files changed, 16 insertions, 2 deletions
diff --git a/packages/website/ts/@next/pages/ecosystem.tsx b/packages/website/ts/@next/pages/ecosystem.tsx
index 54b624310..38379901a 100644
--- a/packages/website/ts/@next/pages/ecosystem.tsx
+++ b/packages/website/ts/@next/pages/ecosystem.tsx
@@ -9,6 +9,7 @@ import { Icon } from 'ts/@next/components/icon';
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 { constants } from 'ts/utils/constants';
interface BenefitProps {
title: string;
@@ -64,10 +65,21 @@ export const NextEcosystem = () => (
Program to bolster the expansion of both infrastructure projects and relayers building on 0x.
</Paragraph>
<LinkWrap>
- <Button href="" isWithArrow={true} isAccentColor={true}>
+ <Button
+ href={constants.URL_ECOSYSTEM_APPLY}
+ isWithArrow={true}
+ isAccentColor={true}
+ useAnchorTag={true}
+ >
Apply now
</Button>
- <Button to="#" isWithArrow={true} isAccentColor={true}>
+ <Button
+ href={constants.URL_ECOSYSTEM_BLOG_POST}
+ isWithArrow={true}
+ isAccentColor={true}
+ useAnchorTag={true}
+ target="_blank"
+ >
Learn More
</Button>
</LinkWrap>
diff --git a/packages/website/ts/utils/constants.ts b/packages/website/ts/utils/constants.ts
index 3248d3911..236f2021b 100644
--- a/packages/website/ts/utils/constants.ts
+++ b/packages/website/ts/utils/constants.ts
@@ -76,6 +76,8 @@ export const constants = {
URL_BITLY_API: 'https://api-ssl.bitly.com',
URL_BLOG: 'https://blog.0x.org/latest',
URL_DISCOURSE_FORUM: 'https://forum.0x.org',
+ URL_ECOSYSTEM_APPLY: 'https://0x.smapply.io/',
+ URL_ECOSYSTEM_BLOG_POST: 'https://blog.0xproject.com/announcing-the-0x-ecosystem-acceleration-program-89d1cb89d565',
URL_FIREFOX_U2F_ADDON: 'https://addons.mozilla.org/en-US/firefox/addon/u2f-support-add-on/',
URL_TESTNET_FAUCET: 'https://faucet.0x.org',
URL_GITHUB_ORG: 'https://github.com/0xProject',