Merge pull request #520 from outline/jori/about-page

About page
This commit is contained in:
Jori Lallo
2018-01-23 22:37:39 -08:00
committed by GitHub
7 changed files with 170 additions and 11 deletions

View File

@@ -4,6 +4,6 @@ import styled from 'styled-components';
export default styled.div`
width: 100%;
max-width: 720px;
margin: 0 auto;
margin: 0 auto 2em;
padding: 0 2em;
`;

View File

@@ -6,10 +6,11 @@ import {
signin,
developers,
changelog,
about,
privacy,
githubUrl,
spectrumUrl,
blogUrl,
twitterUrl,
} from '../../../shared/utils/routeHelpers';
import { color } from '../../../shared/styles/constants';
@@ -22,7 +23,7 @@ function TopNavigation() {
<a href="/#features">Features</a>
</MenuItemDesktop>
<MenuItemDesktop>
<a href={blogUrl()}>Blog</a>
<a href={about()}>About</a>
</MenuItemDesktop>
<MenuItemDesktop>
<a href={changelog()}>Changelog</a>
@@ -51,7 +52,7 @@ function BottomNavigation() {
<a href={blogUrl()}>Medium</a>
</div>
<div>
<a href={twitterUrl()}>Twitter</a>
<a href={privacy()}>Privacy</a>
</div>
</BottomNav>
);