diff options
author | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-12-14 21:59:22 +0800 |
---|---|---|
committer | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-12-14 21:59:35 +0800 |
commit | ef403108fb0f5ed2798bc7eb59fa487c323ac1fb (patch) | |
tree | fdd7fd851deb74685bcd1fe602ddc505b1b9e6b6 /packages/website/ts/@next/components/sections | |
parent | 8a06dccbbf7e95b4223446cbd018f55b90214a62 (diff) | |
download | dexon-0x-contracts-ef403108fb0f5ed2798bc7eb59fa487c323ac1fb.tar dexon-0x-contracts-ef403108fb0f5ed2798bc7eb59fa487c323ac1fb.tar.gz dexon-0x-contracts-ef403108fb0f5ed2798bc7eb59fa487c323ac1fb.tar.bz2 dexon-0x-contracts-ef403108fb0f5ed2798bc7eb59fa487c323ac1fb.tar.lz dexon-0x-contracts-ef403108fb0f5ed2798bc7eb59fa487c323ac1fb.tar.xz dexon-0x-contracts-ef403108fb0f5ed2798bc7eb59fa487c323ac1fb.tar.zst dexon-0x-contracts-ef403108fb0f5ed2798bc7eb59fa487c323ac1fb.zip |
Edits CTA landing section
Diffstat (limited to 'packages/website/ts/@next/components/sections')
-rw-r--r-- | packages/website/ts/@next/components/sections/landing/cta.tsx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/packages/website/ts/@next/components/sections/landing/cta.tsx b/packages/website/ts/@next/components/sections/landing/cta.tsx index 49fc48c1c..1a959a6e9 100644 --- a/packages/website/ts/@next/components/sections/landing/cta.tsx +++ b/packages/website/ts/@next/components/sections/landing/cta.tsx @@ -3,6 +3,9 @@ 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; } @@ -16,13 +19,13 @@ export const SectionLandingCta = (props: Props) => ( flexBreakpoint="900px" > <BlockIconLink - icon="getStarted" + iconComponent={<AnimatedCompassIcon />} title="Ready to build on 0x?" linkLabel="Get Started" linkUrl="https://0xproject.com/docs" /> <BlockIconLink - icon="getInTouch" + iconComponent={<AnimatedChatIcon />} title="Want help from the 0x team?" linkLabel="Get in Touch" linkAction={props.onContactClick} |