aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/pages/jobs/join_0x.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/pages/jobs/join_0x.tsx')
-rw-r--r--packages/website/ts/pages/jobs/join_0x.tsx43
1 files changed, 33 insertions, 10 deletions
diff --git a/packages/website/ts/pages/jobs/join_0x.tsx b/packages/website/ts/pages/jobs/join_0x.tsx
index 72cce3b89..daddb0dcf 100644
--- a/packages/website/ts/pages/jobs/join_0x.tsx
+++ b/packages/website/ts/pages/jobs/join_0x.tsx
@@ -3,8 +3,12 @@ import { colors } from '@0xproject/react-shared';
import * as React from 'react';
import { Button } from 'ts/components/ui/button';
+import { Container } from 'ts/components/ui/container';
+import { Image } from 'ts/components/ui/image';
+import { Text } from 'ts/components/ui/text';
+import { constants } from 'ts/utils/constants';
-const BUTTON_TEXT = 'view open positions';
+const BUTTON_TEXT = 'View open positions';
export interface Join0xProps {
onCallToActionClick: () => void;
@@ -12,17 +16,36 @@ export interface Join0xProps {
export const Join0x = (props: Join0xProps) => (
<div className="clearfix center lg-py4 md-py4" style={{ backgroundColor: colors.white, color: colors.black }}>
- <div className="mx-auto inline-block align-middle py4" style={{ lineHeight: '44px', textAlign: 'center' }}>
+ <div
+ className="mx-auto inline-block align-middle py4"
+ style={{ lineHeight: '44px', textAlign: 'center', position: 'relative' }}
+ >
+ <Container className="sm-hide xs-hide md-hide" position="absolute" left="100%" marginLeft="80px">
+ <Image src="images/jobs/hero-dots-right.svg" width="400px" />
+ </Container>
+ <Container className="sm-hide xs-hide md-hide" position="absolute" right="100%" marginRight="80px">
+ <Image src="images/jobs/hero-dots-left.svg" width="400px" />
+ </Container>
<div className="h2 sm-center sm-pt3" style={{ fontFamily: 'Roboto Mono' }}>
- Join 0x
- </div>
- <div
- className="pb2 lg-pt2 md-pt2 sm-pt3 sm-px3 h4 sm-center"
- style={{ fontFamily: 'Roboto', lineHeight: 2, maxWidth: 537 }}
- >
- 0x is transforming the way that value is exchanged on a global scale. Come join us in San Francisco or
- work remotely anywhere in the world to help create the infrastructure of a new tokenized economy.
+ Join Us in Our Mission
</div>
+ <Container className="pb2 lg-pt2 md-pt2 sm-pt3 sm-px3 sm-center" maxWidth="537px">
+ <Text fontSize="14px" lineHeight="30px">
+ At 0x, our mission is to create a tokenized world where all value can flow freely.
+ <br />
+ <br />We are powering a growing ecosystem of decentralized applications and solving novel challenges
+ to make our technology intuitive, flexible, and accessible to all.{' '}
+ <a
+ style={{ color: colors.mediumBlue, textDecoration: 'none' }}
+ target="_blank"
+ href={constants.URL_MISSION_AND_VALUES_BLOG_POST}
+ >
+ Read more
+ </a>{' '}
+ about our mission, and join us in building financial infrastructure upon which the exchange of
+ anything of value will take place.
+ </Text>
+ </Container>
<div className="py3">
<Button
type="button"