aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/pages/about/mission.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/@next/pages/about/mission.tsx')
-rw-r--r--packages/website/ts/@next/pages/about/mission.tsx75
1 files changed, 45 insertions, 30 deletions
diff --git a/packages/website/ts/@next/pages/about/mission.tsx b/packages/website/ts/@next/pages/about/mission.tsx
index 1b5e18b10..f8b01dc08 100644
--- a/packages/website/ts/@next/pages/about/mission.tsx
+++ b/packages/website/ts/@next/pages/about/mission.tsx
@@ -1,3 +1,4 @@
+import * as _ from 'lodash';
import * as React from 'react';
import { AboutPageLayout } from 'ts/@next/components/aboutPageLayout';
@@ -7,6 +8,24 @@ import { Column, Section, Wrap } from 'ts/@next/components/layout';
import { Separator } from 'ts/@next/components/separator';
import { Heading, Paragraph } from 'ts/@next/components/text';
+const values = [
+ {
+ title: 'Do The Right Thing',
+ description: 'We acknowledge the broad subjectivity behind doing “the right thing,” and are committed to rigorously exploring its nuance in our decision making. We believe this responsibility drives our decision making above all else, and pledge to act in the best interest of our peers, community, and society as a whole.',
+ icon: 'right-thing',
+ },
+ {
+ title: 'Consistently Ship',
+ description: 'Achieving our mission requires dedication and diligence. We aspire to be an organization that consistently ships. We set high-impact goals that are rooted in data and pride ourselves in consistently outputting outstanding results across the organization.',
+ icon: 'consistently-ship',
+ },
+ {
+ title: 'Focus on long-term Impact',
+ description: 'We anticipate that over time, awareness of the fundamentally disruptive nature of frictionless global exchange will cause some to see this technology as a threat. There will be setbacks, some will claim that this technology is too disruptive, and we will face adversity. Persistence and a healthy long-term focus will see us through these battles.',
+ icon: 'long-term-impact',
+ },
+];
+
export const NextAboutMission = () => (
<AboutPageLayout
title="Creating a tokenized world where all value can flow freely."
@@ -14,7 +33,12 @@ export const NextAboutMission = () => (
>
<Section isFullWidth={true} isNoPadding={true}>
<Wrap width="full">
- <Image src="/images/@next/about/about-mission@2x.jpg" height="372" alt="" isCentered={true} />
+ <Image
+ src="/images/@next/about/about-mission@2x.jpg"
+ height="372"
+ alt=""
+ isCentered={true}
+ />
</Wrap>
</Section>
@@ -25,35 +49,26 @@ export const NextAboutMission = () => (
</Column>
<Column colWidth="2/3" isNoPadding={true}>
- <Wrap>
- <Column colWidth="1/4">
- <Icon name="right-thing" size={120} />
- </Column>
- <Column colWidth="2/3" isFlexGrow={true}>
- <Heading>Do The Right Thing</Heading>
- <Paragraph isMuted={true}>We acknowledge the broad subjectivity behind doing “the right thing,” and are committed to rigorously exploring its nuance in our decision making. We believe this responsibility drives our decision making above all else, and pledge to act in the best interest of our peers, community, and society as a whole.</Paragraph>
- </Column>
- </Wrap>
- <Separator/>
- <Wrap>
- <Column colWidth="1/4">
- <Icon name="consistently-ship" size={120} />
- </Column>
- <Column colWidth="2/3" isFlexGrow={true}>
- <Heading>Consistently Ship</Heading>
- <Paragraph isMuted={true}>Achieving our mission requires dedication and diligence. We aspire to be an organization that consistently ships. We set high-impact goals that are rooted in data and pride ourselves in consistently outputting outstanding results across the organization.</Paragraph>
- </Column>
- </Wrap>
- <Separator/>
- <Wrap>
- <Column colWidth="1/4">
- <Icon name="long-term-impact" size={120} />
- </Column>
- <Column colWidth="2/3" isFlexGrow={true}>
- <Heading>Focus on long-term Impact</Heading>
- <Paragraph isMuted={true}>We anticipate that over time, awareness of the fundamentally disruptive nature of frictionless global exchange will cause some to see this technology as a threat. There will be setbacks, some will claim that this technology is too disruptive, and we will face adversity. Persistence and a healthy long-term focus will see us through these battles.</Paragraph>
- </Column>
- </Wrap>
+ {_.map(values, (item, index) => (
+ <>
+ <Wrap>
+ <Column colWidth="1/4">
+ <Icon name={item.icon} size={120} />
+ </Column>
+
+ <Column colWidth="2/3">
+ <Heading>
+ {item.title}
+ </Heading>
+ <Paragraph isMuted={true}>
+ {item.description}
+ </Paragraph>
+ </Column>
+ </Wrap>
+
+ {(index < values.length - 1) && <Separator/>}
+ </>
+ ))}
</Column>
</Wrap>
</Section>