Added spectrum link

This commit is contained in:
Jori Lallo
2017-11-21 01:00:30 -08:00
parent dcb9366592
commit 5c01ff47e9
2 changed files with 8 additions and 0 deletions

View File

@ -5,6 +5,7 @@ import {
signin,
developers,
githubUrl,
spectrumUrl,
blogUrl,
twitterUrl,
} from '../../utils/routeHelpers';
@ -39,6 +40,9 @@ function BottomNavigation() {
<MenuItem>
<a href={githubUrl()}>GitHub</a>
</MenuItem>
<MenuItem>
<a href={spectrumUrl()}>Spectrum</a>
</MenuItem>
<MenuItem>
<a href={blogUrl()}>Medium</a>
</MenuItem>

View File

@ -12,6 +12,10 @@ export function twitterUrl(): string {
return 'https://twitter.com/getoutline';
}
export function spectrumUrl(): string {
return 'https://spectrum.chat/outline';
}
export function developers(): string {
return '/developers';
}