From 7ad29950a86bdffcf8cdd0bbe6d780324dac768d Mon Sep 17 00:00:00 2001 From: Brandon Millman Date: Tue, 17 Jul 2018 14:58:55 -0700 Subject: Update mission section --- packages/website/ts/pages/jobs/mission.tsx | 66 +++++++++++++----------------- 1 file changed, 29 insertions(+), 37 deletions(-) (limited to 'packages/website') diff --git a/packages/website/ts/pages/jobs/mission.tsx b/packages/website/ts/pages/jobs/mission.tsx index f7f874e04..a1e6881c9 100644 --- a/packages/website/ts/pages/jobs/mission.tsx +++ b/packages/website/ts/pages/jobs/mission.tsx @@ -1,5 +1,7 @@ import * as React from 'react'; +import { Container } from 'ts/components/ui/container'; +import { Text } from 'ts/components/ui/text'; import { colors } from 'ts/style/colors'; import { ScreenWidths } from 'ts/types'; @@ -8,49 +10,39 @@ export interface MissionProps { } export const Mission = (props: MissionProps) => { const isSmallScreen = props.screenWidth === ScreenWidths.Sm; - const image = ( -
- -
- ); - const missionStatementStyle = !isSmallScreen ? { height: 364, lineHeight: '364px' } : undefined; + const image = ; + const missionStatementClassName = isSmallScreen ? 'center' : undefined; const missionStatement = ( -
-
-
- Our Mission -
-
- We believe a system can exist in which all world value is accessible to anyone, anywhere, regardless - of where you happen to be born. -
-
-
+ + + Globally Distributed
Purposefully Aligned +
+ + + We’re a highly technical team with diverse backgrounds in engineering, science, business, finance, + and research. While headquarted in San Francisco, we’ve designed our workflows to empower teammates + to stay informed and execute on their objectives from anywhere in the world. If you’re passionate + about our mission, we’re excited to talk to you, regardless of where you might live. + + +
); return (
-
- {isSmallScreen ? ( -
- {missionStatement} - {image} -
- ) : ( -
- {image} - {missionStatement} -
- )} -
+ {!isSmallScreen ? ( + + {image} + {missionStatement} + + ) : ( + + {missionStatement} + {image} + + )}
); }; -- cgit v1.2.3