From ea781b8850cda274d24e4cc5f196dfb7e5b37732 Mon Sep 17 00:00:00 2001 From: fragosti Date: Thu, 20 Dec 2018 16:32:00 -0800 Subject: feat: remove unused files --- packages/website/ts/pages/jobs/mission.tsx | 47 ------------------------------ 1 file changed, 47 deletions(-) delete mode 100644 packages/website/ts/pages/jobs/mission.tsx (limited to 'packages/website/ts/pages/jobs/mission.tsx') diff --git a/packages/website/ts/pages/jobs/mission.tsx b/packages/website/ts/pages/jobs/mission.tsx deleted file mode 100644 index 28546f985..000000000 --- a/packages/website/ts/pages/jobs/mission.tsx +++ /dev/null @@ -1,47 +0,0 @@ -import * as React from 'react'; - -import { Container } from 'ts/components/ui/container'; -import { Image } from 'ts/components/ui/image'; -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 shouldShowImage = props.screenWidth === ScreenWidths.Lg; - const image = ; - const missionStatementClassName = !shouldShowImage ? 'center' : undefined; - const missionStatement = ( - - - Powered by a Diverse
Worldwide Community -
- - - We're a highly technical team with varied backgrounds in engineering, science, business, finance, - and research. While the core team is headquartered in San Francisco, there are 30+ teams building on - 0x and hundreds of thousands of participants behind our efforts globally. We're passionate about - open-source software and decentralized technology's potential to act as an equalizing force in the - world. - - -
- ); - return ( -
- {shouldShowImage ? ( - - {image} - {missionStatement} - - ) : ( - {missionStatement} - )} -
- ); -}; -- cgit v1.2.3