aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorBrandon Millman <brandon@0xproject.com>2018-08-31 08:26:47 +0800
committerGitHub <noreply@github.com>2018-08-31 08:26:47 +0800
commit675964dc5c6c44eb07023fd036857ecd3f14dcf3 (patch)
tree725d513b94620c2c09dd2c7adeffae9a1f381e31 /packages
parent66eef758c6bbc1ee16fb44957d640662ee9f8e87 (diff)
parent6432f85eb0d2b0e765e7a699d6ccc951e0bee888 (diff)
downloaddexon-sol-tools-675964dc5c6c44eb07023fd036857ecd3f14dcf3.tar
dexon-sol-tools-675964dc5c6c44eb07023fd036857ecd3f14dcf3.tar.gz
dexon-sol-tools-675964dc5c6c44eb07023fd036857ecd3f14dcf3.tar.bz2
dexon-sol-tools-675964dc5c6c44eb07023fd036857ecd3f14dcf3.tar.lz
dexon-sol-tools-675964dc5c6c44eb07023fd036857ecd3f14dcf3.tar.xz
dexon-sol-tools-675964dc5c6c44eb07023fd036857ecd3f14dcf3.tar.zst
dexon-sol-tools-675964dc5c6c44eb07023fd036857ecd3f14dcf3.zip
Merge pull request #1048 from 0xProject/feature/website/patch-v2-landing
[website] Final tweaks for landing page
Diffstat (limited to 'packages')
-rw-r--r--packages/website/translations/english.json4
-rw-r--r--packages/website/ts/pages/landing/landing.tsx10
2 files changed, 9 insertions, 5 deletions
diff --git a/packages/website/translations/english.json b/packages/website/translations/english.json
index 6864462c5..9ce458111 100644
--- a/packages/website/translations/english.json
+++ b/packages/website/translations/english.json
@@ -19,8 +19,8 @@
"in 0x protocol, orders are transported off-chain, massively reducing gas costs and eliminating blockchain bloat. Relayers help broadcast orders and collect a fee each time they facilitate a trade. Anyone can build a relayer.",
"RELAYERS_HEADER": "relayers building on 0x",
"BENEFITS_HEADER": "benefits of 0x",
- "USE_CASES_HEADER": "uses of 0x",
- "BENEFIT_ONE_TITLE": "many assets",
+ "USE_CASES_HEADER": "use cases of 0x",
+ "BENEFIT_ONE_TITLE": "any asset",
"BENEFIT_ONE_DESCRIPTION":
"the 0x protocol facilitates the exchange of a growing number of Ethereum-based tokens including currencies, game items, and many more digital assets.",
"BENEFIT_TWO_TITLE": "networked liquidity",
diff --git a/packages/website/ts/pages/landing/landing.tsx b/packages/website/ts/pages/landing/landing.tsx
index 34f124d8c..7dfd9c9df 100644
--- a/packages/website/ts/pages/landing/landing.tsx
+++ b/packages/website/ts/pages/landing/landing.tsx
@@ -22,6 +22,7 @@ interface BoxContent {
description: string;
imageUrl: string;
classNames: string;
+ maxWidth: number;
}
interface AssetType {
title: string;
@@ -53,7 +54,7 @@ const ROTATING_LIST = [
'tokens',
'game items',
'digital art',
- 'outcomes',
+ 'futures',
'stocks',
'derivatives',
'loans',
@@ -399,18 +400,21 @@ export class Landing extends React.Component<LandingProps, LandingState> {
description: this.props.translate.get(Key.BenefitOneDescription, Deco.Cap),
imageUrl: '/images/landing/distributed_network.png',
classNames: '',
+ maxWidth: 160,
},
{
title: this.props.translate.get(Key.BenefitTwoTitle, Deco.Cap),
description: this.props.translate.get(Key.BenefitTwoDescription, Deco.Cap),
imageUrl: '/images/landing/liquidity.png',
classNames: 'mx-auto',
+ maxWidth: 160,
},
{
title: this.props.translate.get(Key.BenefitThreeTitle, Deco.Cap),
description: this.props.translate.get(Key.BenefitThreeDescription, Deco.Cap),
imageUrl: '/images/landing/exchange_everywhere.png',
classNames: 'right',
+ maxWidth: 130,
},
];
const boxes = _.map(boxContents, (boxContent: BoxContent) => {
@@ -421,7 +425,7 @@ export class Landing extends React.Component<LandingProps, LandingState> {
<img
className="mx-auto"
src={boxContent.imageUrl}
- style={{ height: 'auto', maxWidth: 160 }}
+ style={{ height: 'auto', maxWidth: boxContent.maxWidth }}
/>
</Container>
<div className="h3" style={{ color: 'black', fontFamily: 'Roboto Mono' }}>
@@ -565,7 +569,7 @@ export class Landing extends React.Component<LandingProps, LandingState> {
lineHeight: 1.5,
fontSize: 14,
overflow: 'hidden',
- height: 104,
+ height: 124,
}}
>
{useCase.description}