From fa501e9c9313584d212b53282b73dc5390b29725 Mon Sep 17 00:00:00 2001 From: Ezekiel Aquino Date: Wed, 12 Dec 2018 15:45:52 +0100 Subject: Edits jobs page, wip current openings --- packages/website/ts/@next/components/newLayout.tsx | 5 +- packages/website/ts/@next/pages/about/jobs.tsx | 110 +++++++++++---------- 2 files changed, 60 insertions(+), 55 deletions(-) diff --git a/packages/website/ts/@next/components/newLayout.tsx b/packages/website/ts/@next/components/newLayout.tsx index cc1f725ba..4c5afd318 100644 --- a/packages/website/ts/@next/components/newLayout.tsx +++ b/packages/website/ts/@next/components/newLayout.tsx @@ -53,7 +53,10 @@ export const Column = styled.div` @media (max-width: 768px) { width: 100%; - margin-bottom: 60px; + + & + & { + margin-top: 60px; + } } `; diff --git a/packages/website/ts/@next/pages/about/jobs.tsx b/packages/website/ts/@next/pages/about/jobs.tsx index 0fa066223..b1b9752cf 100644 --- a/packages/website/ts/@next/pages/about/jobs.tsx +++ b/packages/website/ts/@next/pages/about/jobs.tsx @@ -3,7 +3,7 @@ import * as React from 'react'; import styled from 'styled-components'; import { AboutPageLayout } from 'ts/@next/components/aboutPageLayout'; -import { Column, Section, Wrap } from 'ts/@next/components/layout'; +import { Column, FlexWrap, Section } from 'ts/@next/components/newLayout'; import { Link } from 'ts/@next/components/link'; import { Separator } from 'ts/@next/components/separator'; import { Heading, Paragraph } from 'ts/@next/components/text'; @@ -44,85 +44,74 @@ export const NextAboutJobs = () => ( linkLabel="Our mission and values" linkUrl="/mission" > -
- - - +
+ + 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. - - Map of community + + + Map of community + -
-
- +
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
  • -
    -
    -
    + + +
  • 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
    -
    +
    + + Current
    Openings
    +
    + + - {_.map(positions, (position, index) => ( ))} - - +
    ); const Position = ({ position }) => ( - <> - - - {position.title} - - - {position.location} - - - Apply - - - - + + + {position.title} + + + + {position.location} + + + + Apply + + ); const BenefitsList = styled.ul` @@ -135,3 +124,16 @@ const BenefitsList = styled.ul` margin-bottom: 1em; } `; + +const ImageWrap = styled.figure` + @media (min-width: 768px) { + height: 600px; + padding-left: 60px; + display: flex; + align-items: flex-end; + } +`; + +const StyledColumn = styled(Column)` + flex-shrink: 0; +`; -- cgit v1.2.3