aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-12-18 08:28:18 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-12-18 08:28:18 +0800
commit0dcada8e06306f7c90ba6d494440ca7702c3467a (patch)
tree3243dc18cc382dd027f66c799cfc26e046560346 /packages/website
parentb255edc5771807ab3f169337e20693bbcccdf6f7 (diff)
downloaddexon-sol-tools-0dcada8e06306f7c90ba6d494440ca7702c3467a.tar
dexon-sol-tools-0dcada8e06306f7c90ba6d494440ca7702c3467a.tar.gz
dexon-sol-tools-0dcada8e06306f7c90ba6d494440ca7702c3467a.tar.bz2
dexon-sol-tools-0dcada8e06306f7c90ba6d494440ca7702c3467a.tar.lz
dexon-sol-tools-0dcada8e06306f7c90ba6d494440ca7702c3467a.tar.xz
dexon-sol-tools-0dcada8e06306f7c90ba6d494440ca7702c3467a.tar.zst
dexon-sol-tools-0dcada8e06306f7c90ba6d494440ca7702c3467a.zip
feat: add links to press page
Diffstat (limited to 'packages/website')
-rw-r--r--packages/website/ts/@next/pages/about/press.tsx12
1 files changed, 7 insertions, 5 deletions
diff --git a/packages/website/ts/@next/pages/about/press.tsx b/packages/website/ts/@next/pages/about/press.tsx
index 50a99613a..ef04506cf 100644
--- a/packages/website/ts/@next/pages/about/press.tsx
+++ b/packages/website/ts/@next/pages/about/press.tsx
@@ -24,27 +24,29 @@ const highlights: HighlightProps[] = [
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.',
- href: '#',
+ href:
+ 'https://www.forbes.com/sites/rebeccacampbell1/2018/12/06/0x-launches-instant-delivers-an-easy-and-flexible-way-to-buy-crypto-tokens/#bfb73a843561',
},
{
logo: '/images/@next/press/logo-venturebeat.png',
title: 'VentureBeat',
text: '0x leads the way for ‘tokenization’ of the world, and collectible game items are next',
- href: '#',
+ href:
+ 'https://venturebeat.com/2018/09/24/0x-leads-the-way-for-tokenization-of-the-world-and-collectible-game-items-are-next/',
},
{
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.',
- href: '#',
+ href: 'http://fortune.com/2018/09/06/0x-harbor-blockchain/',
},
{
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.',
- href: '#',
+ href: 'https://techcrunch.com/2018/07/16/0x/',
},
];
@@ -75,7 +77,7 @@ 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}>
+ <Button href={highlight.href} isWithArrow={true} isNoBorder={true} target="_blank">
Read Article
</Button>
</Column>