aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/pages/instant/instant.tsx
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2018-11-29 06:59:23 +0800
committerBrandon Millman <brandon.millman@gmail.com>2018-11-29 06:59:23 +0800
commit0f01e31cc3826df7000e0ddc35354aa9af515966 (patch)
treeac1d7e015a6498cad77ebfcca35a35b14d1beedc /packages/website/ts/pages/instant/instant.tsx
parent63cb312c7fc5d53934473bade954157027f0f230 (diff)
downloaddexon-sol-tools-0f01e31cc3826df7000e0ddc35354aa9af515966.tar
dexon-sol-tools-0f01e31cc3826df7000e0ddc35354aa9af515966.tar.gz
dexon-sol-tools-0f01e31cc3826df7000e0ddc35354aa9af515966.tar.bz2
dexon-sol-tools-0f01e31cc3826df7000e0ddc35354aa9af515966.tar.lz
dexon-sol-tools-0f01e31cc3826df7000e0ddc35354aa9af515966.tar.xz
dexon-sol-tools-0f01e31cc3826df7000e0ddc35354aa9af515966.tar.zst
dexon-sol-tools-0f01e31cc3826df7000e0ddc35354aa9af515966.zip
feat(website): implement rest of links
Diffstat (limited to 'packages/website/ts/pages/instant/instant.tsx')
-rw-r--r--packages/website/ts/pages/instant/instant.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/website/ts/pages/instant/instant.tsx b/packages/website/ts/pages/instant/instant.tsx
index b758ef162..fa6bd1c33 100644
--- a/packages/website/ts/pages/instant/instant.tsx
+++ b/packages/website/ts/pages/instant/instant.tsx
@@ -56,18 +56,18 @@ export class Instant extends React.Component<InstantProps, InstantState> {
isNightVersion={true}
/>
<Container backgroundColor={colors.instantPrimaryBackground} />
- <Introducing0xInstant screenWidth={this.props.screenWidth} onCTAClick={this._onHeaderCTAClick} />
+ <Introducing0xInstant screenWidth={this.props.screenWidth} onCTAClick={this._onGetStartedClick} />
<Screenshots screenWidth={this.props.screenWidth} />
- <Features screenWidth={this.props.screenWidth} />
+ <Features screenWidth={this.props.screenWidth} onGetStartedClick={this._onGetStartedClick} />
{!this._isSmallScreen() && <Configurator hash={CONFIGURATOR_HASH} />}
<NeedMore screenWidth={this.props.screenWidth} />
<Footer translate={this.props.translate} dispatcher={this.props.dispatcher} />
</Container>
);
}
- private readonly _onHeaderCTAClick = () => {
+ private readonly _onGetStartedClick = () => {
if (this._isSmallScreen()) {
- utils.openUrl(`${utils.getCurrentBaseUrl()}/wiki#About`);
+ utils.openUrl(`${utils.getCurrentBaseUrl()}/wiki#Get-Started`);
} else {
this._scrollToConfigurator();
}