aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/pages/landing.tsx
diff options
context:
space:
mode:
authorEzekiel Aquino <ezekiel@bakkenbaeck.no>2018-11-30 21:35:17 +0800
committerEzekiel Aquino <ezekiel@bakkenbaeck.no>2018-11-30 21:35:17 +0800
commit82d6f2150b5a96b9effbaf86b9c28abb5b2b750a (patch)
tree6c148213d45a99634b43193fa41f073f5235b450 /packages/website/ts/@next/pages/landing.tsx
parent5f177108d17357fae990679b68a7836ba53f648e (diff)
downloaddexon-sol-tools-82d6f2150b5a96b9effbaf86b9c28abb5b2b750a.tar
dexon-sol-tools-82d6f2150b5a96b9effbaf86b9c28abb5b2b750a.tar.gz
dexon-sol-tools-82d6f2150b5a96b9effbaf86b9c28abb5b2b750a.tar.bz2
dexon-sol-tools-82d6f2150b5a96b9effbaf86b9c28abb5b2b750a.tar.lz
dexon-sol-tools-82d6f2150b5a96b9effbaf86b9c28abb5b2b750a.tar.xz
dexon-sol-tools-82d6f2150b5a96b9effbaf86b9c28abb5b2b750a.tar.zst
dexon-sol-tools-82d6f2150b5a96b9effbaf86b9c28abb5b2b750a.zip
Adds wrapGrid, bit of cleanup
Diffstat (limited to 'packages/website/ts/@next/pages/landing.tsx')
-rw-r--r--packages/website/ts/@next/pages/landing.tsx84
1 files changed, 34 insertions, 50 deletions
diff --git a/packages/website/ts/@next/pages/landing.tsx b/packages/website/ts/@next/pages/landing.tsx
index 69be9ee79..61d07641b 100644
--- a/packages/website/ts/@next/pages/landing.tsx
+++ b/packages/website/ts/@next/pages/landing.tsx
@@ -1,8 +1,10 @@
import * as React from 'react';
+import * as _ from 'lodash';
+import styled from 'styled-components';
import {colors} from 'ts/style/colors';
import {Button, ButtonWrap} from 'ts/@next/components/button';
-import {Column, Section, Wrap, WrapCentered} from 'ts/@next/components/layout';
+import {Column, Section, Wrap, WrapCentered, WrapGrid} from 'ts/@next/components/layout';
import {SiteWrap} from 'ts/@next/components/siteWrap';
import {Heading, Paragraph} from 'ts/@next/components/text';
@@ -11,6 +13,16 @@ import ProtocolIcon from 'ts/@next/icons/illustrations/protocol.svg';
import IconReadyToBuild from 'ts/@next/icons/illustrations/ready-to-build.svg';
+/**
+ Note(ez): Maybe when we're done at least with a basic structure,
+ we can take out each section into e.g. LandingSectionIntro.tsx in
+ @next/sections/landing ? so then our routes would only look like
+
+ <SiteWrap>
+ <LandingSectionIntro />
+ <LandingSectionWhatever />
+ </SiteWrap>
+*/
export const NextLanding = () => (
<SiteWrap>
<Section>
@@ -41,7 +53,7 @@ export const NextLanding = () => (
</Wrap>
</Section>
- <Section bgColor={colors.backgroundDark}>
+ <Section bgColor={colors.backgroundDark} padLarge>
<WrapCentered width="narrow">
<ProtocolIcon/>
@@ -91,6 +103,18 @@ export const NextLanding = () => (
</Wrap>
</Section>
+ <Section padLarge>
+ <WrapCentered>
+ <Heading size="small">You're in good company</Heading>
+ </WrapCentered>
+
+ <WrapGrid width="narrow">
+ {_.map([...Array(9)], (item, index) => (
+ <SampleLogo />
+ ))}
+ </WrapGrid>
+ </Section>
+
<Section>
<Wrap>
<Column bgColor="#003831" colWidth="1/2" padLarge>
@@ -108,53 +132,13 @@ export const NextLanding = () => (
</Column>
</Wrap>
</Section>
-
- <Section>
- <Wrap>
- <Column colWidth="2/3">
- Powering Decentralized Exchange<br/>
- Example of a 2/3 1/3 assymetric composition
- </Column>
-
- <Column colWidth="1/3">
- RIGHT IMAGE
- </Column>
- </Wrap>
- </Section>
-
- <Section
- bgColor="#ff0000"
- fullWidth
- noPadding>
- <Wrap width="full">
- <Column colWidth="2/3">
- SAMPLE FLUSHED width
- </Column>
-
- <Column colWidth="1/3">
- RIGHT IMAGE
- </Column>
- </Wrap>
- </Section>
-
- <Section bgColor="#003831">
- <Wrap width="narrow">
- 0x is an open protocol that enables the peer-to-peer exchange of Ethereum-based tokens. Anyone can utilize 0x to service a wide variety of markets ranging from gaming items to traditional financial assets.
- </Wrap>
-
- <Wrap>
- <Column colWidth="1/3">
- This
- </Column>
-
- <Column colWidth="1/3">
- is a
- </Column>
-
- <Column colWidth="1/3">
- three-column module
- </Column>
- </Wrap>
- </Section>
</SiteWrap>
);
+
+
+const SampleLogo = styled.div`
+ width: 60px;
+ height: 60px;
+ border: 1px solid blue;
+ margin: 30px 60px;
+`;