blob: 54e4c34f4b2408a1f8d6c2d10d0391579d0bbb50 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
import * as React from 'react';
import styled from 'styled-components';
import { Link } from 'ts/@next/components/button';
import { ChapterLink } from 'ts/@next/components/chapter_link';
import { Column, Section } from 'ts/@next/components/newLayout';
import { SiteWrap } from 'ts/@next/components/siteWrap';
import { Heading, Paragraph } from 'ts/@next/components/text';
interface Props {
title: string;
description: React.Node;
linkLabel?: string;
linkUrl?: string;
}
export const AboutPageLayout = (props: Props) => (
<SiteWrap theme="light">
<Section isFlex={true} maxWidth="1170px">
<Nav colWidth="1/3">
<ChapterLink to="/next/about/mission">Our Mission</ChapterLink>
<ChapterLink to="/next/about/team">Team</ChapterLink>
<ChapterLink to="/next/about/press">Press</ChapterLink>
<ChapterLink to="/next/about/jobs">Jobs</ChapterLink>
</Nav>
<Column width="70%" maxWidth="826px">
<Column width="100%" maxWidth="680px">
<Heading size="medium">
{props.title}
</Heading>
<Paragraph size="medium" marginBottom="60px" isMuted={0.65}>
{props.description}
</Paragraph>
{(props.linkLabel && props.linkUrl) &&
<Link href={props.linkUrl} isNoBorder={true} isWithArrow={true}>
{props.linkLabel}
</Link>
}
</Column>
</Column>
</Section>
{props.children}
</SiteWrap>
);
const Nav = styled(Column)`
@media (max-width: 768px) {
// display: none;
}
`;
|