aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Carlsen <fred@sjelfull.no>2018-12-10 23:30:24 +0800
committerFred Carlsen <fred@sjelfull.no>2018-12-10 23:30:41 +0800
commit9dc32c2bcabd8f8d7c396faebbb6d18639ac0385 (patch)
tree3461fd4f586add443ec21b955b9cbeb2bc530176
parentbdd287559cac066fe9aaa2012a9e16e63d93dbc5 (diff)
downloaddexon-sol-tools-9dc32c2bcabd8f8d7c396faebbb6d18639ac0385.tar
dexon-sol-tools-9dc32c2bcabd8f8d7c396faebbb6d18639ac0385.tar.gz
dexon-sol-tools-9dc32c2bcabd8f8d7c396faebbb6d18639ac0385.tar.bz2
dexon-sol-tools-9dc32c2bcabd8f8d7c396faebbb6d18639ac0385.tar.lz
dexon-sol-tools-9dc32c2bcabd8f8d7c396faebbb6d18639ac0385.tar.xz
dexon-sol-tools-9dc32c2bcabd8f8d7c396faebbb6d18639ac0385.tar.zst
dexon-sol-tools-9dc32c2bcabd8f8d7c396faebbb6d18639ac0385.zip
Tweaks
-rw-r--r--packages/website/ts/@next/pages/about/jobs.tsx33
-rw-r--r--packages/website/ts/@next/pages/about/team.tsx8
2 files changed, 24 insertions, 17 deletions
diff --git a/packages/website/ts/@next/pages/about/jobs.tsx b/packages/website/ts/@next/pages/about/jobs.tsx
index aa501259e..3089dfab3 100644
--- a/packages/website/ts/@next/pages/about/jobs.tsx
+++ b/packages/website/ts/@next/pages/about/jobs.tsx
@@ -1,5 +1,5 @@
import * as React from 'react';
-import * as _ from 'lodash';
+import * as _ from 'lodash/core';
import styled from 'styled-components';
import { ChapterLink } from 'ts/@next/components/chapter_link';
@@ -72,25 +72,30 @@ export const NextAboutJobs = () => (
<Paragraph size="medium">
To create a tokenized world where all value can flow freely.We are powering a growing ecosystem of decentralized applications and solving novel challenges to make our technology intuitive, flexible, and accessible to all. Read more about our mission, and join us in building financial infrastructure upon which the exchange of anything of value will take place.
</Paragraph>
+ <Link href="#">Our misson and values</Link>
</Column>
</Wrap>
</Section>
<Section bgColor="#F3F6F4">
- <Wrap>
- <Column colWidth="1/3">
- <Heading size="medium">
- Powered by a Diverse Worldwide Community
- </Heading>
- <Paragraph>
- We're a highly technical team with varied backgrounds in engineering, science, business, finance, and research. While the core team is headquartered in San Francisco, there are 30+ teams building on 0x and hundreds of thousands of participants behind our efforts globally. We're passionate about open-source software and decentralized technology's potential to act as an equalizing force in the world.
- </Paragraph>
- </Column>
+ <Wrap>
+ <Column colWidth="1/3">
+ <Heading size="medium" isNoMargin={true}>
+ Powered by a Diverse Worldwide Community
+ </Heading>
+ </Column>
+ </Wrap>
+ <Wrap>
+ <Column colWidth="1/3">
+ <Paragraph>
+ We're a highly technical team with varied backgrounds in engineering, science, business, finance, and research. While the core team is headquartered in San Francisco, there are 30+ teams building on 0x and hundreds of thousands of participants behind our efforts globally. We're passionate about open-source software and decentralized technology's potential to act as an equalizing force in the world.
+ </Paragraph>
+ </Column>
- <Column colWidth="2/3">
- <img src="/images/@next/jobs/map@2x.png" height="365" alt="Map of community"/>
- </Column>
- </Wrap>
+ <Column colWidth="2/3">
+ <img src="/images/@next/jobs/map@2x.png" height="365" alt="Map of community"/>
+ </Column>
+ </Wrap>
</Section>
<Section>
diff --git a/packages/website/ts/@next/pages/about/team.tsx b/packages/website/ts/@next/pages/about/team.tsx
index 74659237e..c8764b033 100644
--- a/packages/website/ts/@next/pages/about/team.tsx
+++ b/packages/website/ts/@next/pages/about/team.tsx
@@ -1,11 +1,13 @@
import * as React from 'react';
import { Link as ReactRouterLink } from 'react-router-dom';
import styled from 'styled-components';
+import * as _ from 'lodash/core';
import { colors } from 'ts/style/colors';
import { ChapterLink } from 'ts/@next/components/chapter_link';
import { Column, Section, Wrap } from 'ts/@next/components/layout';
+import { Link } from 'ts/@next/components/link';
import { SiteWrap } from 'ts/@next/components/siteWrap';
import { Heading, Paragraph } from 'ts/@next/components/text';
@@ -162,7 +164,7 @@ export const NextAboutTeam = () => (
<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>
+ <Link href="#">Join the Team</Link>
</Column>
</Wrap>
</Section>
@@ -175,7 +177,7 @@ export const NextAboutTeam = () => (
<Column colWidth="2/3">
<Wrap isWrapped={true} isCentered={false}>
- {team.map((info, index) => <Member key={`team-${index}`} name={info.name} title={info.title} />)}
+ {_.map(team, (info, index) => <Member key={`team-${index}`} name={info.name} title={info.title} />)}
</Wrap>
</Column>
</Wrap>
@@ -189,7 +191,7 @@ export const NextAboutTeam = () => (
<Column colWidth="2/3">
<Wrap isWrapped={true} isCentered={false}>
- {advisors.map((info, index) => <Member key={`team-${index}`} name={info.name} title={info.title} />)}
+ {_.map(advisors, (info, index) => <Member key={`team-${index}`} name={info.name} title={info.title} />)}
</Wrap>
</Column>
</Wrap>