Added about page

This commit is contained in:
Jori Lallo
2018-01-21 23:56:08 -08:00
parent fa1b6f9b4f
commit b99ed0cee3
5 changed files with 159 additions and 8 deletions

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>
);