aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/pages/landing.tsx
diff options
context:
space:
mode:
authorSteve Klebanoff <steve.klebanoff@gmail.com>2019-01-03 08:56:49 +0800
committerSteve Klebanoff <steve.klebanoff@gmail.com>2019-01-03 08:56:49 +0800
commitedb3a613879ecb4ae077dc4e4256965de2092e48 (patch)
treeb7860f548c5399238d466f51241d86720b3a87a2 /packages/website/ts/pages/landing.tsx
parent89f67b9becf3b4c0d13cceeaca4d5656ad500a9a (diff)
parent1ddf1087dd327b2ef35165518ee91eb457b84174 (diff)
downloaddexon-sol-tools-edb3a613879ecb4ae077dc4e4256965de2092e48.tar
dexon-sol-tools-edb3a613879ecb4ae077dc4e4256965de2092e48.tar.gz
dexon-sol-tools-edb3a613879ecb4ae077dc4e4256965de2092e48.tar.bz2
dexon-sol-tools-edb3a613879ecb4ae077dc4e4256965de2092e48.tar.lz
dexon-sol-tools-edb3a613879ecb4ae077dc4e4256965de2092e48.tar.xz
dexon-sol-tools-edb3a613879ecb4ae077dc4e4256965de2092e48.tar.zst
dexon-sol-tools-edb3a613879ecb4ae077dc4e4256965de2092e48.zip
Merge branch 'development' into feature/instant/tell-amount-available
Diffstat (limited to 'packages/website/ts/pages/landing.tsx')
-rw-r--r--packages/website/ts/pages/landing.tsx44
1 files changed, 44 insertions, 0 deletions
diff --git a/packages/website/ts/pages/landing.tsx b/packages/website/ts/pages/landing.tsx
new file mode 100644
index 000000000..b47d34dce
--- /dev/null
+++ b/packages/website/ts/pages/landing.tsx
@@ -0,0 +1,44 @@
+import * as React from 'react';
+import DocumentTitle from 'react-document-title';
+
+import { SectionLandingAbout } from 'ts/components/sections/landing/about';
+import { SectionLandingClients } from 'ts/components/sections/landing/clients';
+import { SectionLandingCta } from 'ts/components/sections/landing/cta';
+import { SectionLandingHero } from 'ts/components/sections/landing/hero';
+import { SiteWrap } from 'ts/components/siteWrap';
+
+import { ModalContact } from 'ts/components/modals/modal_contact';
+
+interface Props {
+ theme: {
+ bgColor: string;
+ textColor: string;
+ linkColor: string;
+ };
+}
+
+export class NextLanding extends React.Component<Props> {
+ public state = {
+ isContactModalOpen: false,
+ };
+ public render(): React.ReactNode {
+ return (
+ <SiteWrap theme="dark">
+ <DocumentTitle title="0x: The protocol for trading tokens on Ethereum" />
+ <SectionLandingHero />
+ <SectionLandingAbout />
+ <SectionLandingClients />
+ <SectionLandingCta onContactClick={this._onOpenContactModal} />
+ <ModalContact isOpen={this.state.isContactModalOpen} onDismiss={this._onDismissContactModal} />
+ </SiteWrap>
+ );
+ }
+
+ public _onOpenContactModal = (): void => {
+ this.setState({ isContactModalOpen: true });
+ };
+
+ public _onDismissContactModal = (): void => {
+ this.setState({ isContactModalOpen: false });
+ };
+}