aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/pages/about
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/pages/about')
-rw-r--r--packages/website/ts/pages/about/jobs.tsx8
-rw-r--r--packages/website/ts/pages/about/mission.tsx12
-rw-r--r--packages/website/ts/pages/about/press.tsx16
-rw-r--r--packages/website/ts/pages/about/team.tsx68
4 files changed, 52 insertions, 52 deletions
diff --git a/packages/website/ts/pages/about/jobs.tsx b/packages/website/ts/pages/about/jobs.tsx
index 2fd2c7619..648190380 100644
--- a/packages/website/ts/pages/about/jobs.tsx
+++ b/packages/website/ts/pages/about/jobs.tsx
@@ -3,9 +3,9 @@ import * as React from 'react';
import DocumentTitle from 'react-document-title';
import styled from 'styled-components';
-import { AboutPageLayout } from 'ts/@next/components/aboutPageLayout';
-import { Column, FlexWrap, Section } from 'ts/@next/components/newLayout';
-import { Heading, Paragraph } from 'ts/@next/components/text';
+import { AboutPageLayout } from 'ts/components/aboutPageLayout';
+import { Column, FlexWrap, Section } from 'ts/components/newLayout';
+import { Heading, Paragraph } from 'ts/components/text';
import { WebsiteBackendJobInfo } from 'ts/types';
import { backendClient } from 'ts/utils/backend_client';
import { constants } from 'ts/utils/constants';
@@ -117,7 +117,7 @@ export class NextAboutJobs extends React.Component<NextAboutJobsProps, NextAbout
<Column maxWidth="600px">
<ImageWrap>
- <img src="/images/@next/jobs/map@2x.png" height="365" alt="Map of community" />
+ <img src="/images/jobs/map@2x.png" height="365" alt="Map of community" />
</ImageWrap>
</Column>
</Section>
diff --git a/packages/website/ts/pages/about/mission.tsx b/packages/website/ts/pages/about/mission.tsx
index 2e6530edd..ab8949fae 100644
--- a/packages/website/ts/pages/about/mission.tsx
+++ b/packages/website/ts/pages/about/mission.tsx
@@ -3,11 +3,11 @@ import * as React from 'react';
import DocumentTitle from 'react-document-title';
import styled from 'styled-components';
-import { AboutPageLayout } from 'ts/@next/components/aboutPageLayout';
-import { Definition } from 'ts/@next/components/definition';
-import { Image } from 'ts/@next/components/image';
-import { Column, Section } from 'ts/@next/components/newLayout';
-import { Heading } from 'ts/@next/components/text';
+import { AboutPageLayout } from 'ts/components/aboutPageLayout';
+import { Definition } from 'ts/components/definition';
+import { Image } from 'ts/components/image';
+import { Column, Section } from 'ts/components/newLayout';
+import { Heading } from 'ts/components/text';
import { constants } from 'ts/utils/constants';
const values = [
@@ -41,7 +41,7 @@ export const NextAboutMission = () => (
<DocumentTitle title="Our Mission - 0x" />
<Section isFullWidth={true} isPadded={false}>
<FullWidthImage>
- <Image src="/images/@next/about/about-office.png" alt="0x Offices" isCentered={true} />
+ <Image src="/images/about/about-office.png" alt="0x Offices" isCentered={true} />
</FullWidthImage>
</Section>
diff --git a/packages/website/ts/pages/about/press.tsx b/packages/website/ts/pages/about/press.tsx
index 030ee4c14..03003d656 100644
--- a/packages/website/ts/pages/about/press.tsx
+++ b/packages/website/ts/pages/about/press.tsx
@@ -3,10 +3,10 @@ import * as React from 'react';
import DocumentTitle from 'react-document-title';
import styled from 'styled-components';
-import { AboutPageLayout } from 'ts/@next/components/aboutPageLayout';
-import { Button } from 'ts/@next/components/button';
-import { Column, FlexWrap } from 'ts/@next/components/newLayout';
-import { Paragraph } from 'ts/@next/components/text';
+import { AboutPageLayout } from 'ts/components/aboutPageLayout';
+import { Button } from 'ts/components/button';
+import { Column, FlexWrap } from 'ts/components/newLayout';
+import { Paragraph } from 'ts/components/text';
interface HighlightProps {
logo: string;
@@ -21,7 +21,7 @@ interface HighlightItemProps {
const highlights: HighlightProps[] = [
{
- logo: '/images/@next/press/logo-forbes.png',
+ logo: '/images/press/logo-forbes.png',
title: 'Forbes',
text:
'0x Instant is aiming to aid businesses and developers such as news sites, crypto wallets, dApps or price trackers to monetize or add a new revenue stream to their existing pipeline.',
@@ -29,21 +29,21 @@ const highlights: HighlightProps[] = [
'https://www.forbes.com/sites/rebeccacampbell1/2018/12/06/0x-launches-instant-delivers-an-easy-and-flexible-way-to-buy-crypto-tokens/#bfb73a843561',
},
{
- logo: '/images/@next/press/logo-venturebeat.png',
+ logo: '/images/press/logo-venturebeat.png',
title: 'VentureBeat',
text: '0x leads the way for ‘tokenization’ of the world, and collectible game items are next',
href:
'https://venturebeat.com/2018/09/24/0x-leads-the-way-for-tokenization-of-the-world-and-collectible-game-items-are-next/',
},
{
- logo: '/images/@next/press/logo-fortune.png',
+ logo: '/images/press/logo-fortune.png',
title: 'Fortune',
text:
'In the future, many traditional investments like real estate and corporate shares will come in the form of digital tokens that are bought and transferred on a blockchain.',
href: 'http://fortune.com/2018/09/06/0x-harbor-blockchain/',
},
{
- logo: '/images/@next/press/logo-techcrunch.png',
+ logo: '/images/press/logo-techcrunch.png',
title: 'TechCrunch',
text:
'0x allows any developer to quickly build their own decentralized cryptocurrency exchange and decide their own fees.',
diff --git a/packages/website/ts/pages/about/team.tsx b/packages/website/ts/pages/about/team.tsx
index 7177964be..41d6c2cf8 100644
--- a/packages/website/ts/pages/about/team.tsx
+++ b/packages/website/ts/pages/about/team.tsx
@@ -5,9 +5,9 @@ import styled from 'styled-components';
import { colors } from 'ts/style/colors';
-import { AboutPageLayout } from 'ts/@next/components/aboutPageLayout';
-import { Column, Section } from 'ts/@next/components/newLayout';
-import { Heading, Paragraph } from 'ts/@next/components/text';
+import { AboutPageLayout } from 'ts/components/aboutPageLayout';
+import { Column, Section } from 'ts/components/newLayout';
+import { Heading, Paragraph } from 'ts/components/text';
import { WebsitePaths } from 'ts/types';
interface TeamMember {
@@ -18,132 +18,132 @@ interface TeamMember {
const team: TeamMember[] = [
{
- imageUrl: '/images/@next/team/willw.jpg',
+ imageUrl: '/images/team/willw.jpg',
name: 'Will Warren',
title: 'co-founder & CEO',
},
{
- imageUrl: '/images/@next/team/amirb.jpg',
+ imageUrl: '/images/team/amirb.jpg',
name: 'Amir Bandeali',
title: 'Co-founder & CTO',
},
{
- imageUrl: '/images/@next/team/fabiob.jpg',
+ imageUrl: '/images/team/fabiob.jpg',
name: 'Fabio Berger',
title: 'senior engineer',
},
{
- imageUrl: '/images/@next/team/alexv.jpg',
+ imageUrl: '/images/team/alexv.jpg',
name: 'Alex Xu',
title: 'Director of operations',
},
{
- imageUrl: '/images/@next/team/leonidL.jpg',
+ imageUrl: '/images/team/leonidL.jpg',
name: 'Leonid Logvinov',
title: 'engineer',
},
{
- imageUrl: '/images/@next/team/benb.jpg',
+ imageUrl: '/images/team/benb.jpg',
name: 'Ben Burns',
title: 'designer',
},
{
- imageUrl: '/images/@next/team/brandonm.jpg',
+ imageUrl: '/images/team/brandonm.jpg',
name: 'Brandon Millman',
title: 'senior engineer',
},
{
- imageUrl: '/images/@next/team/toms.jpg',
+ imageUrl: '/images/team/toms.jpg',
name: 'Tom Schmidt',
title: 'product manager',
},
{
- imageUrl: '/images/@next/team/jacobe.jpg',
+ imageUrl: '/images/team/jacobe.jpg',
name: 'Jacob Evans',
title: 'ecosystem engineer',
},
{
- imageUrl: '/images/@next/team/blake.jpg',
+ imageUrl: '/images/team/blake.jpg',
name: 'Blake Henderson',
title: 'ecosystem programs lead',
},
{
- imageUrl: '/images/@next/team/zack.jpg',
+ imageUrl: '/images/team/zack.jpg',
name: 'Zack Skelly',
title: 'lead recruiter',
},
{
- imageUrl: '/images/@next/team/greg.jpg',
+ imageUrl: '/images/team/greg.jpg',
name: 'Greg Hysen',
title: 'blockchain engineer',
},
{
- imageUrl: '/images/@next/team/remcoB.jpg',
+ imageUrl: '/images/team/remcoB.jpg',
name: 'Remco Bloemen',
title: 'technical fellow',
},
{
- imageUrl: '/images/@next/team/francesco.jpg',
+ imageUrl: '/images/team/francesco.jpg',
name: 'Francesco Agosti',
title: 'engineer',
},
{
- imageUrl: '/images/@next/team/melo.jpg',
+ imageUrl: '/images/team/melo.jpg',
name: 'Mel Oberto',
title: 'people operations associate',
},
{
- imageUrl: '/images/@next/team/alexb.jpg',
+ imageUrl: '/images/team/alexb.jpg',
name: 'Alex Browne',
title: 'engineer in residence',
},
{
- imageUrl: '/images/@next/team/peterz.jpg',
+ imageUrl: '/images/team/peterz.jpg',
name: 'Peter Zeitz',
title: 'research fellow',
},
{
- imageUrl: '/images/@next/team/chrisk.jpg',
+ imageUrl: '/images/team/chrisk.jpg',
name: 'Chris Kalani',
title: 'director of design',
},
{
- imageUrl: '/images/@next/team/clayr.jpg',
+ imageUrl: '/images/team/clayr.jpg',
name: 'Clay Robbins',
title: 'ecosystem development lead',
},
{
- imageUrl: '/images/@next/team/mattt.jpg',
+ imageUrl: '/images/team/mattt.jpg',
name: 'Matt Taylor',
title: 'marketing lead',
},
{
- imageUrl: '/images/@next/team/eugenea.jpg',
+ imageUrl: '/images/team/eugenea.jpg',
name: 'Eugene Aumson',
title: 'engineer',
},
{
- imageUrl: '/images/@next/team/weijew.jpg',
+ imageUrl: '/images/team/weijew.jpg',
name: 'Weijie Wu',
title: 'research fellow',
},
{
- imageUrl: '/images/@next/team/rahuls.jpg',
+ imageUrl: '/images/team/rahuls.jpg',
name: 'Rahul Singireddy',
title: 'relayer success manager',
},
{
- imageUrl: '/images/@next/team/jasons.jpg',
+ imageUrl: '/images/team/jasons.jpg',
name: 'Jason Somensatto',
title: 'strategic legal counsel',
},
{
- imageUrl: '/images/@next/team/steveK.jpg',
+ imageUrl: '/images/team/steveK.jpg',
name: 'Steve Klebanoff',
title: 'senior engineer',
},
{
- imageUrl: '/images/@next/team/xianny.jpg',
+ imageUrl: '/images/team/xianny.jpg',
name: 'Xianny Ng',
title: 'engineer',
},
@@ -151,27 +151,27 @@ const team: TeamMember[] = [
const advisors: TeamMember[] = [
{
- imageUrl: '/images/@next/team/advisors/frede.jpg',
+ imageUrl: '/images/team/advisors/frede.jpg',
name: 'Fred Ehrsam',
title: 'Advisor',
},
{
- imageUrl: '/images/@next/team/advisors/olafc.jpg',
+ imageUrl: '/images/team/advisors/olafc.jpg',
name: 'Olaf Carlson-Wee',
title: 'Advisor',
},
{
- imageUrl: '/images/@next/team/advisors/joeyk.jpg',
+ imageUrl: '/images/team/advisors/joeyk.jpg',
name: 'Joey Krug',
title: 'Advisor',
},
{
- imageUrl: '/images/@next/team/advisors/lindax.jpg',
+ imageUrl: '/images/team/advisors/lindax.jpg',
name: 'Linda Xie',
title: 'Advisor',
},
{
- imageUrl: '/images/@next/team/advisors/davids.jpg',
+ imageUrl: '/images/team/advisors/davids.jpg',
name: 'David Sacks',
title: 'Advisor',
},