aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/components/sections/landing/cta.tsx
diff options
context:
space:
mode:
authorBrandon Millman <brandon@0xproject.com>2018-12-15 06:42:55 +0800
committerGitHub <noreply@github.com>2018-12-15 06:42:55 +0800
commite3dcb7107bdd7bd8197818a05b163985026f7ca2 (patch)
treeee8e5617762c49ab9bdb6bde676f49c91eb2f012 /packages/website/ts/@next/components/sections/landing/cta.tsx
parent6d45beccad44e86ddd692d0cf54c09c29c5d9daf (diff)
parentf7ceb4cf582debf2521ef4797674e31a86ff6a38 (diff)
downloaddexon-sol-tools-e3dcb7107bdd7bd8197818a05b163985026f7ca2.tar
dexon-sol-tools-e3dcb7107bdd7bd8197818a05b163985026f7ca2.tar.gz
dexon-sol-tools-e3dcb7107bdd7bd8197818a05b163985026f7ca2.tar.bz2
dexon-sol-tools-e3dcb7107bdd7bd8197818a05b163985026f7ca2.tar.lz
dexon-sol-tools-e3dcb7107bdd7bd8197818a05b163985026f7ca2.tar.xz
dexon-sol-tools-e3dcb7107bdd7bd8197818a05b163985026f7ca2.tar.zst
dexon-sol-tools-e3dcb7107bdd7bd8197818a05b163985026f7ca2.zip
Merge pull request #1375 from bakkenbaeck/website
[WIP] Website
Diffstat (limited to 'packages/website/ts/@next/components/sections/landing/cta.tsx')
-rw-r--r--packages/website/ts/@next/components/sections/landing/cta.tsx34
1 files changed, 34 insertions, 0 deletions
diff --git a/packages/website/ts/@next/components/sections/landing/cta.tsx b/packages/website/ts/@next/components/sections/landing/cta.tsx
new file mode 100644
index 000000000..1a959a6e9
--- /dev/null
+++ b/packages/website/ts/@next/components/sections/landing/cta.tsx
@@ -0,0 +1,34 @@
+import * as React from 'react';
+
+import {BlockIconLink} from 'ts/@next/components/blockIconLink';
+import {Section} from 'ts/@next/components/newLayout';
+
+import {AnimatedChatIcon} from 'ts/@next/components/animatedChatIcon';
+import {AnimatedCompassIcon} from 'ts/@next/components/animatedCompassIcon';
+
+interface Props {
+ onContactClick?: () => void;
+}
+
+export const SectionLandingCta = (props: Props) => (
+ <Section
+ isPadded={false}
+ isFlex={true}
+ maxWidth="auto"
+ wrapWidth="100%"
+ flexBreakpoint="900px"
+ >
+ <BlockIconLink
+ iconComponent={<AnimatedCompassIcon />}
+ title="Ready to build on 0x?"
+ linkLabel="Get Started"
+ linkUrl="https://0xproject.com/docs"
+ />
+ <BlockIconLink
+ iconComponent={<AnimatedChatIcon />}
+ title="Want help from the 0x team?"
+ linkLabel="Get in Touch"
+ linkAction={props.onContactClick}
+ />
+ </Section>
+);