aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next
diff options
context:
space:
mode:
authorFred Carlsen <fred@sjelfull.no>2018-12-03 21:29:36 +0800
committerFred Carlsen <fred@sjelfull.no>2018-12-03 21:29:36 +0800
commit9349e50bb4e2ef6f6c5a0fac4616b09621132e77 (patch)
tree52962782c275ac538e16a4158ca3bf30abd8ae1b /packages/website/ts/@next
parentbf672272cebdc09febbea1f76f5eff903c7a1cf1 (diff)
downloaddexon-sol-tools-9349e50bb4e2ef6f6c5a0fac4616b09621132e77.tar
dexon-sol-tools-9349e50bb4e2ef6f6c5a0fac4616b09621132e77.tar.gz
dexon-sol-tools-9349e50bb4e2ef6f6c5a0fac4616b09621132e77.tar.bz2
dexon-sol-tools-9349e50bb4e2ef6f6c5a0fac4616b09621132e77.tar.lz
dexon-sol-tools-9349e50bb4e2ef6f6c5a0fac4616b09621132e77.tar.xz
dexon-sol-tools-9349e50bb4e2ef6f6c5a0fac4616b09621132e77.tar.zst
dexon-sol-tools-9349e50bb4e2ef6f6c5a0fac4616b09621132e77.zip
Add skeleton for team, press, jobs
Diffstat (limited to 'packages/website/ts/@next')
-rw-r--r--packages/website/ts/@next/pages/about/jobs.tsx95
-rw-r--r--packages/website/ts/@next/pages/about/press.tsx95
-rw-r--r--packages/website/ts/@next/pages/about/team.tsx168
3 files changed, 358 insertions, 0 deletions
diff --git a/packages/website/ts/@next/pages/about/jobs.tsx b/packages/website/ts/@next/pages/about/jobs.tsx
new file mode 100644
index 000000000..e650408c8
--- /dev/null
+++ b/packages/website/ts/@next/pages/about/jobs.tsx
@@ -0,0 +1,95 @@
+import * as React from 'react';
+import styled from 'styled-components';
+
+import { colors } from 'ts/style/colors';
+
+import { Column, Section, Wrap, WrapCentered } from 'ts/@next/components/layout';
+import { SiteWrap } from 'ts/@next/components/siteWrap';
+import { Heading, Paragraph } from 'ts/@next/components/text';
+import { Image } from 'ts/@next/components/image';
+
+import CoinIcon from 'ts/@next/icons/illustrations/coin.svg';
+import ConsistentlyShipIcon from 'ts/@next/icons/illustrations/consistently-ship.svg';
+import LongTermImpactIcon from 'ts/@next/icons/illustrations/long-term-impact.svg';
+import RightThingIcon from 'ts/@next/icons/illustrations/right-thing.svg';
+
+export const NextAboutJobs = () => (
+ <SiteWrap theme="light">
+ <Section>
+ <Wrap>
+ <Column colWidth="1/3">
+ <ChapterLink href="#">Our Mission</ChapterLink>
+ <ChapterLink href="#">Team</ChapterLink>
+ <ChapterLink href="#">Press</ChapterLink>
+ <ChapterLink href="#">Jobs</ChapterLink>
+ </Column>
+ <Column colWidth="2/3">
+ <Heading size="medium">Creating a tokenized world where all value can flow freely.</Heading>
+ <Paragraph size="medium">0x Protocol is an important infrastructure layer for the emerging crypto economy and enables markets to be created that couldn't have existed before. As more assets become tokenized, public blockchains provide the opportunity to establish a new financial stack that is more efficient, transparent, and equitable than any system in the past.</Paragraph>
+ <Paragraph>Our missions and values (arrow)</Paragraph>
+ </Column>
+ </Wrap>
+ </Section>
+
+ <Section
+ isFullWidth={true}
+ isNoPadding={true}>
+ <Wrap width="full">
+ <Image src="/images/@next/about/about-mission@2x.jpg" height="320" alt="" center />
+ </Wrap>
+ </Section>
+
+ <Section>
+ <Wrap>
+ <Column colWidth="1/3">
+ <Heading size="medium">Core<br/>Values</Heading>
+ </Column>
+
+ <Column colWidth="2/3">
+ <Wrap>
+ <Column colWidth="1/3">
+ <RightThingIcon width="100" />
+ </Column>
+ <Column colWidth="2/3">
+ <Heading size="medium">Do The Right Thing</Heading>
+ <Paragraph isMuted={true}>We acknowledge the broad subjectivity behind doing “the right thing,” and are committed to rigorously exploring its nuance in our decision making. We believe this responsibility drives our decision making above all else, and pledge to act in the best interest of our peers, community, and society as a whole.</Paragraph>
+ </Column>
+ </Wrap>
+ <Wrap>
+ <Column colWidth="1/3">
+ <ConsistentlyShipIcon width="100" />
+ </Column>
+ <Column colWidth="2/3">
+ <Heading size="medium">Consistently Ship</Heading>
+ <Paragraph isMuted={true}>Achieving our mission requires dedication and diligence. We aspire to be an organization that consistently ships. We set high-impact goals that are rooted in data and pride ourselves in consistently outputting outstanding results across the organization.</Paragraph>
+ </Column>
+ </Wrap>
+ <Wrap>
+ <Column colWidth="1/3">
+ <LongTermImpactIcon width="100" />
+ </Column>
+ <Column colWidth="2/3">
+ <Heading size="medium">Focus on long-term Impact</Heading>
+ <Paragraph isMuted={true}>We anticipate that over time, awareness of the fundamentally disruptive nature of frictionless global exchange will cause some to see this technology as a threat. There will be setbacks, some will claim that this technology is too disruptive, and we will face adversity. Persistence and a healthy long-term focus will see us through these battles.</Paragraph>
+ </Column>
+ </Wrap>
+ </Column>
+ </Wrap>
+ </Section>
+ </SiteWrap>
+);
+
+const ChapterLink = styled.a`
+ font-size: 1.222222222rem;
+ display: block;
+ opacity: 0.8;
+ margin-bottom: 1.666666667rem;
+
+ &:first-child {
+ opacity: 1;
+ }
+
+ &:hover {
+ opacity: 1;
+ }
+`;
diff --git a/packages/website/ts/@next/pages/about/press.tsx b/packages/website/ts/@next/pages/about/press.tsx
new file mode 100644
index 000000000..019bbf037
--- /dev/null
+++ b/packages/website/ts/@next/pages/about/press.tsx
@@ -0,0 +1,95 @@
+import * as React from 'react';
+import styled from 'styled-components';
+
+import { colors } from 'ts/style/colors';
+
+import { Column, Section, Wrap, WrapCentered } from 'ts/@next/components/layout';
+import { SiteWrap } from 'ts/@next/components/siteWrap';
+import { Heading, Paragraph } from 'ts/@next/components/text';
+import { Image } from 'ts/@next/components/image';
+
+import CoinIcon from 'ts/@next/icons/illustrations/coin.svg';
+import ConsistentlyShipIcon from 'ts/@next/icons/illustrations/consistently-ship.svg';
+import RightThingIcon from 'ts/@next/icons/illustrations/right-thing.svg';
+import LongTermImpactIcon from 'ts/@next/icons/illustrations/long-term-impact.svg';
+
+export const NextAboutPress = () => (
+ <SiteWrap theme="light">
+ <Section>
+ <Wrap>
+ <Column colWidth="1/3">
+ <ChapterLink href="#">Our Mission</ChapterLink>
+ <ChapterLink href="#">Team</ChapterLink>
+ <ChapterLink href="#">Press</ChapterLink>
+ <ChapterLink href="#">Jobs</ChapterLink>
+ </Column>
+ <Column colWidth="2/3">
+ <Heading size="medium">Creating a tokenized world where all value can flow freely.</Heading>
+ <Paragraph size="medium">0x Protocol is an important infrastructure layer for the emerging crypto economy and enables markets to be created that couldn't have existed before. As more assets become tokenized, public blockchains provide the opportunity to establish a new financial stack that is more efficient, transparent, and equitable than any system in the past.</Paragraph>
+ <Paragraph>Our missions and values (arrow)</Paragraph>
+ </Column>
+ </Wrap>
+ </Section>
+
+ <Section
+ isFullWidth={true}
+ isNoPadding={true}>
+ <Wrap width="full">
+ <Image src="/images/@next/about/about-mission@2x.jpg" height="320" alt="" center />
+ </Wrap>
+ </Section>
+
+ <Section>
+ <Wrap>
+ <Column colWidth="1/3">
+ <Heading size="medium">Core<br/>Values</Heading>
+ </Column>
+
+ <Column colWidth="2/3">
+ <Wrap>
+ <Column colWidth="1/3">
+ <RightThingIcon width="100" />
+ </Column>
+ <Column colWidth="2/3">
+ <Heading size="medium">Do The Right Thing</Heading>
+ <Paragraph isMuted={true}>We acknowledge the broad subjectivity behind doing “the right thing,” and are committed to rigorously exploring its nuance in our decision making. We believe this responsibility drives our decision making above all else, and pledge to act in the best interest of our peers, community, and society as a whole.</Paragraph>
+ </Column>
+ </Wrap>
+ <Wrap>
+ <Column colWidth="1/3">
+ <ConsistentlyShipIcon width="100" />
+ </Column>
+ <Column colWidth="2/3">
+ <Heading size="medium">Consistently Ship</Heading>
+ <Paragraph isMuted={true}>Achieving our mission requires dedication and diligence. We aspire to be an organization that consistently ships. We set high-impact goals that are rooted in data and pride ourselves in consistently outputting outstanding results across the organization.</Paragraph>
+ </Column>
+ </Wrap>
+ <Wrap>
+ <Column colWidth="1/3">
+ <LongTermImpactIcon width="100" />
+ </Column>
+ <Column colWidth="2/3">
+ <Heading size="medium">Focus on long-term Impact</Heading>
+ <Paragraph isMuted={true}>We anticipate that over time, awareness of the fundamentally disruptive nature of frictionless global exchange will cause some to see this technology as a threat. There will be setbacks, some will claim that this technology is too disruptive, and we will face adversity. Persistence and a healthy long-term focus will see us through these battles.</Paragraph>
+ </Column>
+ </Wrap>
+ </Column>
+ </Wrap>
+ </Section>
+ </SiteWrap>
+);
+
+const ChapterLink = styled.a`
+ font-size: 1.222222222rem;
+ display: block;
+ opacity: 0.8;
+ margin-bottom: 1.666666667rem;
+
+ &:first-child {
+ opacity: 1;
+ }
+
+ &:hover {
+ opacity: 1;
+ }
+`;
diff --git a/packages/website/ts/@next/pages/about/team.tsx b/packages/website/ts/@next/pages/about/team.tsx
new file mode 100644
index 000000000..e8b48cb4f
--- /dev/null
+++ b/packages/website/ts/@next/pages/about/team.tsx
@@ -0,0 +1,168 @@
+import * as React from 'react';
+import styled from 'styled-components';
+
+import { colors } from 'ts/style/colors';
+
+import { Column, Section, Wrap, WrapGrid, WrapCentered } from 'ts/@next/components/layout';
+import { SiteWrap } from 'ts/@next/components/siteWrap';
+import { Heading, Paragraph } from 'ts/@next/components/text';
+import { Image } from 'ts/@next/components/image';
+
+import CoinIcon from 'ts/@next/icons/illustrations/coin.svg';
+import ConsistentlyShipIcon from 'ts/@next/icons/illustrations/consistently-ship.svg';
+import RightThingIcon from 'ts/@next/icons/illustrations/right-thing.svg';
+import LongTermImpactIcon from 'ts/@next/icons/illustrations/long-term-impact.svg';
+
+interface TeamMember {
+ name: string;
+ title: string;
+ imageUrl?: string;
+}
+
+const team: TeamMember[] = [
+ {
+ name: 'Will Warren',
+ title: 'Co-Founder and CEO',
+ imageUrl: '#',
+ },
+ {
+ name: 'Will Warren',
+ title: 'Co-Founder and CEO',
+ imageUrl: '#',
+ },
+ {
+ name: 'Will Warren',
+ title: 'Co-Founder and CEO',
+ imageUrl: '#',
+ },
+ {
+ name: 'Will Warren',
+ title: 'Co-Founder and CEO',
+ imageUrl: '#',
+ },
+ {
+ name: 'Will Warren',
+ title: 'Co-Founder and CEO',
+ imageUrl: '#',
+ },
+ {
+ name: 'Will Warren',
+ title: 'Co-Founder and CEO',
+ imageUrl: '#',
+ },
+ {
+ name: 'Will Warren',
+ title: 'Co-Founder and CEO',
+ imageUrl: '#',
+ },
+ {
+ name: 'Will Warren',
+ title: 'Co-Founder and CEO',
+ imageUrl: '#',
+ },
+ {
+ name: 'Will Warren',
+ title: 'Co-Founder and CEO',
+ imageUrl: '#',
+ },
+];
+
+const advisors: TeamMember[] = [
+ {
+ name: 'Will Warren',
+ title: 'Co-Founder and CEO',
+ imageUrl: '#',
+ },
+ {
+ name: 'Will Warren',
+ title: 'Co-Founder and CEO',
+ imageUrl: '#',
+ },
+ {
+ name: 'Will Warren',
+ title: 'Co-Founder and CEO',
+ imageUrl: '#',
+ },
+];
+
+const Member = ({ name, title, imageUrl }: TeamMember) => (
+ <StyledMember>
+ <svg width="184" height="184" viewBox="0 0 184 184" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="184" height="184" fill="#003831"/></svg>
+ <Heading color={colors.textDarkPrimary} size="small" isNoMargin={true}>{name}</Heading>
+ <Paragraph isMuted={0.5}>{title}</Paragraph>
+ </StyledMember>
+);
+
+export const NextAboutTeam = () => (
+ <SiteWrap theme="light">
+ <Section>
+ <Wrap>
+ <Column colWidth="1/3">
+ <ChapterLink href="#">Our Mission</ChapterLink>
+ <ChapterLink href="#">Team</ChapterLink>
+ <ChapterLink href="#">Press</ChapterLink>
+ <ChapterLink href="#">Jobs</ChapterLink>
+ </Column>
+ <Column colWidth="2/3">
+ <Heading size="medium">We are a global, growing team</Heading>
+ <Paragraph size="medium">We are a distributed team with backgrounds in engineering, academic research, business, and design. The 0x Core Team is passionate about accelerating the adoption decentralized technology and believe in its potential to be an equalizing force in the world. Join us and do the most impactful work of your life.</Paragraph>
+ <Paragraph>Join the Team (arrow)</Paragraph>
+ </Column>
+ </Wrap>
+ </Section>
+
+ <Section>
+ <Wrap>
+ <Column colWidth="1/3">
+ <Heading size="medium">0x Team</Heading>
+ </Column>
+
+ <Column colWidth="2/3">
+ <Wrap isWrapped={true} isCentered={false}>
+ {team.map((info, index) => <Member key={`team-${index}`} name={info.name} title={info.title} />)}
+ </Wrap>
+ </Column>
+ </Wrap>
+ </Section>
+
+ <Section bgColor="#F3F6F4">
+ <Wrap>
+ <Column colWidth="1/3">
+ <Heading size="medium">Advisors</Heading>
+ </Column>
+
+ <Column colWidth="2/3">
+ <Wrap isWrapped={true} isCentered={false}>
+ {team.map((info, index) => <Member key={`team-${index}`} name={info.name} title={info.title} />)}
+ </Wrap>
+ </Column>
+ </Wrap>
+ </Section>
+ </SiteWrap>
+);
+
+const ChapterLink = styled.a`
+ font-size: 1.222222222rem;
+ display: block;
+ opacity: 0.8;
+ margin-bottom: 1.666666667rem;
+
+ &:first-child {
+ opacity: 1;
+ }
+
+ &:hover {
+ opacity: 1;
+ }
+`;
+
+const StyledMember = styled.div`
+ width: calc(25% - 10px);
+ margin-bottom: 10px;
+
+ img, svg {
+ width: 100%;
+ object-fit: contain;
+ margin-bottom: 10px;
+ }
+`;