diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-12-18 08:25:22 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-12-18 08:25:22 +0800 |
commit | 4ac1db124783a0193d13b1519c17fef0f8c95c7a (patch) | |
tree | 85c004c5e03f28e8e85895fd0795c38b43bbf6ff | |
parent | 2107285a00b500e79677de219e27f88a1e3c7bd4 (diff) | |
download | dexon-sol-tools-4ac1db124783a0193d13b1519c17fef0f8c95c7a.tar dexon-sol-tools-4ac1db124783a0193d13b1519c17fef0f8c95c7a.tar.gz dexon-sol-tools-4ac1db124783a0193d13b1519c17fef0f8c95c7a.tar.bz2 dexon-sol-tools-4ac1db124783a0193d13b1519c17fef0f8c95c7a.tar.lz dexon-sol-tools-4ac1db124783a0193d13b1519c17fef0f8c95c7a.tar.xz dexon-sol-tools-4ac1db124783a0193d13b1519c17fef0f8c95c7a.tar.zst dexon-sol-tools-4ac1db124783a0193d13b1519c17fef0f8c95c7a.zip |
feat: add press mailto link
-rw-r--r-- | packages/website/ts/@next/pages/about/press.tsx | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/packages/website/ts/@next/pages/about/press.tsx b/packages/website/ts/@next/pages/about/press.tsx index 7d8dfccab..fb9d445ba 100644 --- a/packages/website/ts/@next/pages/about/press.tsx +++ b/packages/website/ts/@next/pages/about/press.tsx @@ -22,7 +22,8 @@ const highlights: HighlightProps[] = [ { logo: '/images/@next/press/logo-forbes.png', title: 'Forbes', - text: '0x Instant is aiming to aid businesses and developers such as news sites, crypto wallets, dApps or price trackers to monetize or add a new revenue stream to their existing pipeline.', + text: + '0x Instant is aiming to aid businesses and developers such as news sites, crypto wallets, dApps or price trackers to monetize or add a new revenue stream to their existing pipeline.', href: '#', }, { @@ -34,13 +35,15 @@ const highlights: HighlightProps[] = [ { logo: '/images/@next/press/logo-fortune.png', title: 'Fortune', - text: 'In the future, many traditional investments like real estate and corporate shares will come in the form of digital tokens that are bought and transferred on a blockchain.', + text: + 'In the future, many traditional investments like real estate and corporate shares will come in the form of digital tokens that are bought and transferred on a blockchain.', href: '#', }, { logo: '/images/@next/press/logo-techcrunch.png', title: 'TechCrunch', - text: '0x allows any developer to quickly build their own decentralized cryptocurrency exchange and decide their own fees.', + text: + '0x allows any developer to quickly build their own decentralized cryptocurrency exchange and decide their own fees.', href: '#', }, ]; @@ -51,7 +54,8 @@ export const NextAboutPress = () => ( description={ <> <Paragraph size="medium" marginBottom="60px"> - Want to write about 0x? <a href="#">Get in touch</a>, or <a href="#">download our press kit</a>. + Want to write about 0x? <a href="mailto:team@0xproject.com">Get in touch</a>, or{' '} + <a href="#">download our press kit</a>. </Paragraph> {_.map(highlights, (highlight, index) => ( @@ -72,7 +76,9 @@ export const Highlight: React.FunctionComponent<HighlightItemProps> = (props: Hi <Column width="60%" maxWidth="560px"> <Paragraph isMuted={false}>{highlight.text}</Paragraph> - <Button href={highlight.href} isWithArrow={true} isNoBorder={true}>Read Article</Button> + <Button href={highlight.href} isWithArrow={true} isNoBorder={true}> + Read Article + </Button> </Column> </HighlightWrap> ); |