aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/pages/about/team.tsx
diff options
context:
space:
mode:
authorFrancesco Agosti <francesco.agosti93@gmail.com>2018-12-18 08:53:20 +0800
committerGitHub <noreply@github.com>2018-12-18 08:53:20 +0800
commit4fbc544b16880df03b493f0cbd2b812363d285ab (patch)
tree91dfceeb7379788f1bbaffa40062addcedc0b225 /packages/website/ts/@next/pages/about/team.tsx
parented4573fe2c7c2d6a386040c02b27202a78928f8e (diff)
parent7468be8f176e784fa1102dc128ac930a50d0710b (diff)
downloaddexon-0x-contracts-4fbc544b16880df03b493f0cbd2b812363d285ab.tar
dexon-0x-contracts-4fbc544b16880df03b493f0cbd2b812363d285ab.tar.gz
dexon-0x-contracts-4fbc544b16880df03b493f0cbd2b812363d285ab.tar.bz2
dexon-0x-contracts-4fbc544b16880df03b493f0cbd2b812363d285ab.tar.lz
dexon-0x-contracts-4fbc544b16880df03b493f0cbd2b812363d285ab.tar.xz
dexon-0x-contracts-4fbc544b16880df03b493f0cbd2b812363d285ab.tar.zst
dexon-0x-contracts-4fbc544b16880df03b493f0cbd2b812363d285ab.zip
Merge pull request #1450 from 0xProject/feature/website/0x-org-about
[website] 0x org about
Diffstat (limited to 'packages/website/ts/@next/pages/about/team.tsx')
-rw-r--r--packages/website/ts/@next/pages/about/team.tsx48
1 files changed, 17 insertions, 31 deletions
diff --git a/packages/website/ts/@next/pages/about/team.tsx b/packages/website/ts/@next/pages/about/team.tsx
index bf8d02095..421cacb24 100644
--- a/packages/website/ts/@next/pages/about/team.tsx
+++ b/packages/website/ts/@next/pages/about/team.tsx
@@ -64,7 +64,7 @@ const team: TeamMember[] = [
{
imageUrl: '/images/@next/team/blake.jpg',
name: 'Blake Henderson',
- title: 'operations associate',
+ title: 'ecosystem programs lead',
},
{
imageUrl: '/images/@next/team/zack.jpg',
@@ -89,7 +89,7 @@ const team: TeamMember[] = [
{
imageUrl: '/images/@next/team/melo.jpg',
name: 'Mel Oberto',
- title: 'office ops / executive assistant',
+ title: 'people operations associate',
},
{
imageUrl: '/images/@next/team/alexb.jpg',
@@ -181,22 +181,14 @@ export const NextAboutTeam = () => (
title="We are a global, growing team"
description="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."
linkLabel="Join the team"
- linkUrl={WebsitePaths.AboutJobs}
+ to={WebsitePaths.AboutJobs}
>
- <Section
- maxWidth="1170px"
- wrapWidth="100%"
- isFlex={true}
- flexBreakpoint="900px"
- >
+ <Section maxWidth="1170px" wrapWidth="100%" isFlex={true} flexBreakpoint="900px">
<Column>
<Heading size="medium">0x Team</Heading>
</Column>
- <Column
- width="70%"
- maxWidth="800px"
- >
+ <Column width="70%" maxWidth="800px">
<StyledGrid>
{_.map(team, (info: TeamMember, index: number) => (
<Member key={`team-${index}`} name={info.name} title={info.title} imageUrl={info.imageUrl} />
@@ -205,21 +197,12 @@ export const NextAboutTeam = () => (
</Column>
</Section>
- <Section
- bgColor="#F3F6F4"
- maxWidth="1170px"
- wrapWidth="100%"
- flexBreakpoint="900px"
- isFlex={true}
- >
+ <Section bgColor="#F3F6F4" maxWidth="1170px" wrapWidth="100%" flexBreakpoint="900px" isFlex={true}>
<Column>
<Heading size="medium">Advisors</Heading>
</Column>
- <Column
- width="70%"
- maxWidth="800px"
- >
+ <Column width="70%" maxWidth="800px">
<StyledGrid>
{_.map(advisors, (info: TeamMember, index: number) => (
<Member key={`advisor-${index}`} name={info.name} title={info.title} imageUrl={info.imageUrl} />
@@ -239,9 +222,11 @@ const StyledGrid = styled.div`
const Member = ({ name, title, imageUrl }: TeamMember) => (
<StyledMember>
- <img src={imageUrl} alt={name}/>
+ <img src={imageUrl} alt={name} />
<Name>{name}</Name>
- <MemberTitle isMuted={0.5} size={14} style={{ textTransform: 'capitalize' }}>{title}</MemberTitle>
+ <MemberTitle isMuted={0.5} size={14} style={{ textTransform: 'capitalize' }}>
+ {title}
+ </MemberTitle>
</StyledMember>
);
@@ -252,12 +237,13 @@ const StyledMember = styled.div`
margin-right: 15px;
@media (max-width: 600px) {
- &:nth-child(2n+1) {
+ &:nth-child(2n + 1) {
clear: left;
}
}
- img, svg {
+ img,
+ svg {
width: 100%;
height: auto;
object-fit: contain;
@@ -268,7 +254,7 @@ const StyledMember = styled.div`
width: calc(33.3333% - 30px);
margin-right: 20px;
- &:nth-child(3n+1) {
+ &:nth-child(3n + 1) {
clear: left;
}
}
@@ -276,11 +262,11 @@ const StyledMember = styled.div`
@media (min-width: 900px) {
width: calc(25% - 30px);
- &:nth-child(3n+1) {
+ &:nth-child(3n + 1) {
clear: none;
}
- &:nth-child(4n+1) {
+ &:nth-child(4n + 1) {
clear: left;
}
}