aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/pages/jobs/join_0x.tsx
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2018-05-02 01:17:27 +0800
committerBrandon Millman <brandon.millman@gmail.com>2018-06-13 01:41:05 +0800
commit3d76d83a39ca61641f3efd7ed5cc6f7a214835ca (patch)
tree5a390b62e5dc46d4bc0ecafe20fcdab98ebad64d /packages/website/ts/pages/jobs/join_0x.tsx
parent787015f5370718e31c7990446fb1da298ed13e6b (diff)
downloaddexon-sol-tools-3d76d83a39ca61641f3efd7ed5cc6f7a214835ca.tar
dexon-sol-tools-3d76d83a39ca61641f3efd7ed5cc6f7a214835ca.tar.gz
dexon-sol-tools-3d76d83a39ca61641f3efd7ed5cc6f7a214835ca.tar.bz2
dexon-sol-tools-3d76d83a39ca61641f3efd7ed5cc6f7a214835ca.tar.lz
dexon-sol-tools-3d76d83a39ca61641f3efd7ed5cc6f7a214835ca.tar.xz
dexon-sol-tools-3d76d83a39ca61641f3efd7ed5cc6f7a214835ca.tar.zst
dexon-sol-tools-3d76d83a39ca61641f3efd7ed5cc6f7a214835ca.zip
Skeleton for jobs page and initial implementation
Diffstat (limited to 'packages/website/ts/pages/jobs/join_0x.tsx')
-rw-r--r--packages/website/ts/pages/jobs/join_0x.tsx35
1 files changed, 35 insertions, 0 deletions
diff --git a/packages/website/ts/pages/jobs/join_0x.tsx b/packages/website/ts/pages/jobs/join_0x.tsx
new file mode 100644
index 000000000..f4dbf31a3
--- /dev/null
+++ b/packages/website/ts/pages/jobs/join_0x.tsx
@@ -0,0 +1,35 @@
+import { colors } from '@0xproject/react-shared';
+
+import FlatButton from 'material-ui/FlatButton';
+import * as React from 'react';
+
+export const Join0x = () => (
+ <div className="clearfix center py4" style={{ backgroundColor: colors.white, color: colors.black }}>
+ <div className="mx-auto inline-block align-middle py4" style={{ lineHeight: '44px', textAlign: 'center' }}>
+ <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.
+ </div>
+ <div className="py3">
+ <FlatButton
+ label={'view open positions'}
+ backgroundColor={colors.black}
+ labelStyle={{
+ fontSize: 18,
+ fontFamily: 'Roboto Mono',
+ fontWeight: 'lighter',
+ color: colors.white,
+ textTransform: 'lowercase',
+ }}
+ style={{ width: 280, height: 62, borderRadius: 5 }}
+ />
+ </div>
+ </div>
+ </div>
+);