import * as React from 'react';
import * as _ from 'lodash/core';
import styled from 'styled-components';
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 { Separator } from 'ts/@next/components/separator';
import { SiteWrap } from 'ts/@next/components/siteWrap';
import { Heading, Paragraph } from 'ts/@next/components/text';
interface PositionInterface {
title: string;
location: string;
href: string;
}
const positions: PositionInterface[] = [
{
title: 'Product Designer',
location: 'San Francisco, Remote',
href: '#',
},
{
title: 'Product Designer',
location: 'San Francisco, Remote',
href: '#',
},
{
title: 'Product Designer',
location: 'San Francisco, Remote',
href: '#',
},
{
title: 'Open Positition',
location: "We're always interested in talking to talented people. Send us an application if you think you're the right fit.",
href: '#',
},
];
const Position = ({ position }) => (
<>
{position.title}{position.location}Apply
>
);
export const NextAboutJobs = () => (
Our MissionTeamPressJobs
Join Us in Our Mission
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.
Our misson and values
Powered by a Diverse Worldwide Community
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.
Benefits
Comprehensive Insurance
Unlimited Vacation
Meals and snacks provided daily
Flexible hours and liberal work-from-home-policy
Supportive of remote working
Transportation, phone, and wellness expense
Relocation assistance
Optional team excursions
Competitive salary
Cryptocurrency based compensation
Current Openings
{_.map(positions, (position, index) => )}
);
const BenefitsList = styled.ul`
color: #000;
list-style: disc;
columns: auto 2;
column-gap: 80px;
li {
margin-bottom: 1em;
}
`;