aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/pages
diff options
context:
space:
mode:
authorFred Carlsen <fred@sjelfull.no>2018-12-15 03:20:27 +0800
committerFred Carlsen <fred@sjelfull.no>2018-12-15 03:20:27 +0800
commitceddc019853632f54dd803f5673e8688d38246ee (patch)
treedc051b66a060ecd141d64634ac060cbf3fedad40 /packages/website/ts/@next/pages
parent1955c846f27ee5830bfbff201237dae6dcc99e5d (diff)
downloaddexon-sol-tools-ceddc019853632f54dd803f5673e8688d38246ee.tar
dexon-sol-tools-ceddc019853632f54dd803f5673e8688d38246ee.tar.gz
dexon-sol-tools-ceddc019853632f54dd803f5673e8688d38246ee.tar.bz2
dexon-sol-tools-ceddc019853632f54dd803f5673e8688d38246ee.tar.lz
dexon-sol-tools-ceddc019853632f54dd803f5673e8688d38246ee.tar.xz
dexon-sol-tools-ceddc019853632f54dd803f5673e8688d38246ee.tar.zst
dexon-sol-tools-ceddc019853632f54dd803f5673e8688d38246ee.zip
Type fixes
Diffstat (limited to 'packages/website/ts/@next/pages')
-rw-r--r--packages/website/ts/@next/pages/about/jobs.tsx43
-rw-r--r--packages/website/ts/@next/pages/about/press.tsx33
-rw-r--r--packages/website/ts/@next/pages/about/team.tsx4
-rw-r--r--packages/website/ts/@next/pages/instant.tsx4
4 files changed, 48 insertions, 36 deletions
diff --git a/packages/website/ts/@next/pages/about/jobs.tsx b/packages/website/ts/@next/pages/about/jobs.tsx
index 5bcb0b855..d707c8d39 100644
--- a/packages/website/ts/@next/pages/about/jobs.tsx
+++ b/packages/website/ts/@next/pages/about/jobs.tsx
@@ -7,13 +7,17 @@ import { Link } from 'ts/@next/components/link';
import { Column, FlexWrap, Section } from 'ts/@next/components/newLayout';
import { Heading, Paragraph } from 'ts/@next/components/text';
-interface PositionInterface {
+interface PositionProps {
title: string;
location: string;
href: string;
}
-const positions: PositionInterface[] = [
+interface PositionItemProps {
+ position: PositionProps;
+}
+
+const positions: PositionProps[] = [
{
title: 'Product Designer',
location: 'San Francisco, Remote',
@@ -62,7 +66,7 @@ export const NextAboutJobs = () => (
</Section>
<Section isFlex={true} maxWidth="1170px" wrapWidth="100%">
- <Column colWidth="1/3">
+ <Column>
<Heading size="medium">Benefits</Heading>
</Column>
@@ -97,21 +101,24 @@ export const NextAboutJobs = () => (
</AboutPageLayout>
);
-const Position = ({ position }) => (
- <PositionWrap>
- <StyledColumn width="30%">
- <Heading asElement="h3" size="small" fontWeight="400" marginBottom="0"><a href={position.href}>{position.title}</a></Heading>
- </StyledColumn>
-
- <StyledColumn width="50%" padding="0 40px 0 0">
- <Paragraph isMuted={true} marginBottom="0">{position.location}</Paragraph>
- </StyledColumn>
-
- <StyledColumn width="20%">
- <Paragraph marginBottom="0" textAlign="right"><Link href={position.href}>Apply</Link></Paragraph>
- </StyledColumn>
- </PositionWrap>
-);
+export const Position: React.FunctionComponent<PositionItemProps> = (props: PositionItemProps) => {
+ const { position } = props;
+ return (
+ <PositionWrap>
+ <StyledColumn width="30%">
+ <Heading asElement="h3" size="small" fontWeight="400" marginBottom="0"><a href={position.href}>{position.title}</a></Heading>
+ </StyledColumn>
+
+ <StyledColumn width="50%" padding="0 40px 0 0">
+ <Paragraph isMuted={true} marginBottom="0">{position.location}</Paragraph>
+ </StyledColumn>
+
+ <StyledColumn width="20%">
+ <Paragraph marginBottom="0" textAlign="right"><Link href={position.href}>Apply</Link></Paragraph>
+ </StyledColumn>
+ </PositionWrap>
+ );
+};
const BenefitsList = styled.ul`
color: #000;
diff --git a/packages/website/ts/@next/pages/about/press.tsx b/packages/website/ts/@next/pages/about/press.tsx
index 8cb6080a9..4ef043e80 100644
--- a/packages/website/ts/@next/pages/about/press.tsx
+++ b/packages/website/ts/@next/pages/about/press.tsx
@@ -7,14 +7,18 @@ import { Button } from 'ts/@next/components/button';
import { Column, FlexWrap } from 'ts/@next/components/newLayout';
import { Paragraph } from 'ts/@next/components/text';
-interface HighlightInterface {
+interface HighlightProps {
logo: string;
title?: string;
text: string;
href: string;
}
-const highlights: HighlightInterface[] = [
+interface HighlightItemProps {
+ highlight: HighlightProps;
+}
+
+const highlights: HighlightProps[] = [
{
logo: '/images/@next/press/logo-forbes.png',
title: 'Forbes',
@@ -58,18 +62,21 @@ export const NextAboutPress = () => (
/>
);
-const Highlight = ({ highlight }) => (
- <HighlightWrap>
- <Column>
- <img src={highlight.logo} alt={highlight.title} />
- </Column>
+export const Highlight: React.FunctionComponent<HighlightItemProps> = (props: HighlightItemProps) => {
+ const { highlight } = props;
+ return (
+ <HighlightWrap>
+ <Column>
+ <img src={highlight.logo} alt={highlight.title} />
+ </Column>
- <Column width="60%" maxWidth="560px">
- <Paragraph isMuted={false}>{highlight.text}</Paragraph>
- <Button href={highlight.href} isWithArrow={true} isNoBorder={true}>Read Article</Button>
- </Column>
- </HighlightWrap>
-);
+ <Column width="60%" maxWidth="560px">
+ <Paragraph isMuted={false}>{highlight.text}</Paragraph>
+ <Button href={highlight.href} isWithArrow={true} isNoBorder={true}>Read Article</Button>
+ </Column>
+ </HighlightWrap>
+ );
+};
const HighlightWrap = styled(FlexWrap)`
border-top: 1px solid #eaeaea;
diff --git a/packages/website/ts/@next/pages/about/team.tsx b/packages/website/ts/@next/pages/about/team.tsx
index 5ed534593..05bfc6a85 100644
--- a/packages/website/ts/@next/pages/about/team.tsx
+++ b/packages/website/ts/@next/pages/about/team.tsx
@@ -196,7 +196,7 @@ export const NextAboutTeam = () => (
width="70%"
maxWidth="800px"
>
- <StyledGrid isWrapped={true} isCentered={false}>
+ <StyledGrid>
{_.map(team, (info: TeamMember, index: number) => (
<Member key={`team-${index}`} name={info.name} title={info.title} imageUrl={info.imageUrl} />
))}
@@ -219,7 +219,7 @@ export const NextAboutTeam = () => (
width="70%"
maxWidth="800px"
>
- <StyledGrid isWrapped={true} isCentered={false}>
+ <StyledGrid>
{_.map(advisors, (info: TeamMember, index: number) => (
<Member key={`advisor-${index}`} name={info.name} title={info.title} imageUrl={info.imageUrl} />
))}
diff --git a/packages/website/ts/@next/pages/instant.tsx b/packages/website/ts/@next/pages/instant.tsx
index e8d9e0154..6f78c9bd3 100644
--- a/packages/website/ts/@next/pages/instant.tsx
+++ b/packages/website/ts/@next/pages/instant.tsx
@@ -14,8 +14,6 @@ import {SiteWrap} from 'ts/@next/components/siteWrap';
import {Heading, Paragraph} from 'ts/@next/components/text';
import { Configurator } from 'ts/@next/pages/instant/configurator';
-const CONFIGURATOR_HASH = 'configure';
-
const featuresData = [
{
title: 'Support ERC-20 and ERC-721 tokens',
@@ -96,7 +94,7 @@ export const Next0xInstant = () => (
<ConfiguratorSection maxWidth="1386px" padding="0 58px 70px" bgColor={colors.backgroundDark}>
<Heading>0x Instant Configurator</Heading>
- <Configurator hash={CONFIGURATOR_HASH} />
+ <Configurator />
</ConfiguratorSection>
<Banner