import * as React from 'react'; import { Link as ReactRouterLink } from 'react-router-dom'; import styled from 'styled-components'; import { colors } from 'ts/style/colors'; import { Column, Section, Wrap } from 'ts/@next/components/layout'; import { SiteWrap } from 'ts/@next/components/siteWrap'; import { Heading, Paragraph } from 'ts/@next/components/text'; 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: '#', }, { 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: '#', }, { 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 Member = ({ name, title, imageUrl }: TeamMember) => ( {name} {title} ); export const NextAboutTeam = () => (
Our Mission Team Press Jobs We are a global, growing team 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. Join the Team (arrow)
0x Team {team.map((info, index) => )}
Advisors {advisors.map((info, index) => )}
); const ChapterLink = styled(ReactRouterLink)` 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%; height: auto; object-fit: contain; margin-bottom: 10px; } `;