feat(website): optionally show configurator

This commit is contained in:
Brandon Millman
2018-11-28 13:25:53 -08:00
parent 9608d6fc71
commit e1c237a8e4

View File

@@ -27,8 +27,8 @@ export interface InstantProps {
export interface InstantState {}
const THROTTLE_TIMEOUT = 100;
const DOCUMENT_TITLE = 'Instant';
const DOCUMENT_DESCRIPTION = 'Instant';
const DOCUMENT_TITLE = '0x Instant';
const DOCUMENT_DESCRIPTION = '0x Instant';
export class Instant extends React.Component<InstantProps, InstantState> {
// TODO: consolidate this small screen scaffolding into one place (its being used in portal and docs as well)
@@ -42,6 +42,7 @@ export class Instant extends React.Component<InstantProps, InstantState> {
window.scrollTo(0, 0);
}
public render(): React.ReactNode {
const isSmallScreen = this.props.screenWidth === ScreenWidths.Sm;
return (
<Container overflowX="hidden">
<MetaTags title={DOCUMENT_TITLE} description={DOCUMENT_DESCRIPTION} />
@@ -57,7 +58,7 @@ export class Instant extends React.Component<InstantProps, InstantState> {
<Introducing0xInstant screenWidth={this.props.screenWidth} />
<Screenshots screenWidth={this.props.screenWidth} />
<Features screenWidth={this.props.screenWidth} />
<Configurator />
{!isSmallScreen && <Configurator />}
<NeedMore screenWidth={this.props.screenWidth} />
<Footer translate={this.props.translate} dispatcher={this.props.dispatcher} />
</Container>