diff options
author | Brandon Millman <brandon.millman@gmail.com> | 2018-08-31 02:37:33 +0800 |
---|---|---|
committer | Brandon Millman <brandon.millman@gmail.com> | 2018-08-31 02:39:25 +0800 |
commit | f5e7b7e7e0b1a2121a331c511431360647669a78 (patch) | |
tree | ebaa6612de482f0f29fc897a92c5b078aed1c5f8 /packages/website/ts | |
parent | 038c21324e2ae37f2cd6f1199ee176707cd1fed4 (diff) | |
download | dexon-sol-tools-f5e7b7e7e0b1a2121a331c511431360647669a78.tar dexon-sol-tools-f5e7b7e7e0b1a2121a331c511431360647669a78.tar.gz dexon-sol-tools-f5e7b7e7e0b1a2121a331c511431360647669a78.tar.bz2 dexon-sol-tools-f5e7b7e7e0b1a2121a331c511431360647669a78.tar.lz dexon-sol-tools-f5e7b7e7e0b1a2121a331c511431360647669a78.tar.xz dexon-sol-tools-f5e7b7e7e0b1a2121a331c511431360647669a78.tar.zst dexon-sol-tools-f5e7b7e7e0b1a2121a331c511431360647669a78.zip |
Add title header to use cases section
Diffstat (limited to 'packages/website/ts')
-rw-r--r-- | packages/website/ts/pages/landing/landing.tsx | 25 | ||||
-rw-r--r-- | packages/website/ts/types.ts | 1 |
2 files changed, 12 insertions, 14 deletions
diff --git a/packages/website/ts/pages/landing/landing.tsx b/packages/website/ts/pages/landing/landing.tsx index bd861670a..b32526bba 100644 --- a/packages/website/ts/pages/landing/landing.tsx +++ b/packages/website/ts/pages/landing/landing.tsx @@ -42,6 +42,12 @@ interface Project { const THROTTLE_TIMEOUT = 100; const WHATS_NEW_TITLE = 'V2 of the 0x Protocol is now live!'; const WHATS_NEW_URL = 'https://blog.0xproject.com/18-ideas-for-0x-relayers-in-2018-80a1498b955f'; +const TITLE_STYLE: React.CSSProperties = { + fontFamily: 'Roboto Mono', + color: colors.grey, + fontWeight: 300, + letterSpacing: 3, +}; const relayerProjects: Project[] = [ { @@ -276,16 +282,10 @@ export class Landing extends React.Component<LandingProps, LandingState> { </div> ); }); - const titleStyle: React.CSSProperties = { - fontFamily: 'Roboto Mono', - color: colors.grey, - fontWeight: 300, - letterSpacing: 3, - }; return ( <div className={`clearfix py4 ${isTitleCenter && 'center'}`} style={{ backgroundColor }}> <div className="mx-auto max-width-4 clearfix sm-px3"> - <div className="h4 pb3 lg-pl0 md-pl3 sm-pl2" style={titleStyle}> + <div className="h4 pb3 lg-pl0 md-pl3 sm-pl2" style={TITLE_STYLE}> {title} </div> <div className="clearfix">{projectList}</div> @@ -517,15 +517,9 @@ export class Landing extends React.Component<LandingProps, LandingState> { </div> ); }); - const titleStyle: React.CSSProperties = { - fontFamily: 'Roboto Mono', - color: colors.grey, - fontWeight: 300, - letterSpacing: 3, - }; return ( <div className="clearfix" style={{ backgroundColor: colors.heroGrey }}> - <div className="center pb3 pt4" style={titleStyle}> + <div className="center pb3 pt4" style={TITLE_STYLE}> {this.props.translate.get(Key.BenefitsHeader, Deco.Upper)} </div> <div className="mx-auto pb4 sm-mt2 clearfix" style={{ maxWidth: '60em' }}> @@ -665,6 +659,9 @@ export class Landing extends React.Component<LandingProps, LandingState> { }); return ( <div className="clearfix py4" style={{ backgroundColor: colors.heroGrey }}> + <div className="center h4 pb3 lg-pl0 md-pl3 sm-pl2" style={TITLE_STYLE}> + {this.props.translate.get(Key.UseCasesHeader, Deco.Upper)} + </div> <div className="mx-auto pb4 pt3 mt1 sm-mt2 clearfix" style={{ maxWidth: '67em' }}> {cases} </div> diff --git a/packages/website/ts/types.ts b/packages/website/ts/types.ts index c8789c274..6ab17e261 100644 --- a/packages/website/ts/types.ts +++ b/packages/website/ts/types.ts @@ -415,6 +415,7 @@ export enum Key { OffChainOnChainDescription = 'OFFCHAIN_ONCHAIN_DESCRIPTION', RelayersHeader = 'RELAYERS_HEADER', BenefitsHeader = 'BENEFITS_HEADER', + UseCasesHeader = 'USE_CASES_HEADER', BenefitOneTitle = 'BENEFIT_ONE_TITLE', BenefitOneDescription = 'BENEFIT_ONE_DESCRIPTION', BenefitTwoTitle = 'BENEFIT_TWO_TITLE', |