Added social links (#535)

This commit is contained in:
Jori Lallo
2018-01-29 23:41:43 -08:00
committed by GitHub
parent 7be5b5fa0d
commit dd9d3351b8
4 changed files with 24 additions and 2 deletions

View File

@ -9,6 +9,7 @@ import {
about,
privacy,
githubUrl,
twitterUrl,
spectrumUrl,
blogUrl,
} from '../../../shared/utils/routeHelpers';
@ -25,6 +26,9 @@ function TopNavigation() {
<MenuItemDesktop>
<a href={about()}>About</a>
</MenuItemDesktop>
<MenuItemDesktop>
<a href={twitterUrl()}>Twitter</a>
</MenuItemDesktop>
<MenuItemDesktop>
<a href={changelog()}>Changelog</a>
</MenuItemDesktop>
@ -45,6 +49,9 @@ function BottomNavigation() {
<div>
<a href={githubUrl()}>GitHub</a>
</div>
<div>
<a href={twitterUrl()}>Twitter</a>
</div>
<div>
<a href={spectrumUrl()}>Spectrum</a>
</div>