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

View File

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