diff options
-rw-r--r-- | packages/website/ts/pages/jobs/join_0x.tsx | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/packages/website/ts/pages/jobs/join_0x.tsx b/packages/website/ts/pages/jobs/join_0x.tsx index 72cce3b89..dd54792e9 100644 --- a/packages/website/ts/pages/jobs/join_0x.tsx +++ b/packages/website/ts/pages/jobs/join_0x.tsx @@ -3,8 +3,10 @@ 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 { Text } from 'ts/components/ui/text'; -const BUTTON_TEXT = 'view open positions'; +const BUTTON_TEXT = 'View open positions'; export interface Join0xProps { onCallToActionClick: () => void; @@ -16,13 +18,15 @@ export const Join0x = (props: Join0xProps) => ( <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> + <Container className="pb2 lg-pt2 md-pt2 sm-pt3 sm-px3 sm-center" maxWidth="537px"> + <Text fontSize="14px" lineHeight="30px"> + 0x exists to create a tokenized world where all value can flow freely. We’re building an open and + globally accessible economy where blockchain based digital assets are accessible to anyone, + anywhere. We’re passionate about open-source software and decentralized technology’s potential to + act as an equalizing force in the world. Come join us and help transform the way that value is + exchanged on a global scale. + </Text> + </Container> <div className="py3"> <Button type="button" |