diff --git a/packages/website/ts/@next/pages/about/press.tsx b/packages/website/ts/@next/pages/about/press.tsx
index 7d8dfccabe..fb9d445ba3 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={
<>
- Want to write about 0x? Get in touch, or download our press kit.
+ Want to write about 0x? Get in touch, or{' '}
+ download our press kit.
{_.map(highlights, (highlight, index) => (
@@ -72,7 +76,9 @@ export const Highlight: React.FunctionComponent = (props: Hi
{highlight.text}
-
+
);