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'; export interface MissionProps { screenWidth: ScreenWidths; } export const Mission = (props: MissionProps) => { const isSmallScreen = props.screenWidth === ScreenWidths.Sm; const image = ; const missionStatementClassName = isSmallScreen ? 'center' : undefined; const missionStatement = ( 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 ? ( {image} {missionStatement} ) : ( {missionStatement} {image} )}
); };