Skip to content
This repository has been archived by the owner on Oct 23, 2021. It is now read-only.

Commit

Permalink
fix(): add web site link to about page
Browse files Browse the repository at this point in the history
  • Loading branch information
negamaxi committed Jul 3, 2018
1 parent 98d1315 commit 98cdc92
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import propTypes from 'prop-types'

import GithubIcon from 'react-icons/lib/go/mark-github'
import TwitterIcon from 'react-icons/lib/io/social-twitter'
import GlobeIcon from 'react-icons/lib/io/earth'

import getMyAppVersion from '~utils/getMyAppVersion'

Expand All @@ -24,11 +25,14 @@ const Hero = ({ hasNewReleaseCard }) => (
)
}
<small className='aboutHeroSocial'>
<SocialLink link='https://pathephone.github.io'>
<GlobeIcon /> <span>Site</span>
</SocialLink>
<SocialLink link='https://twitter.com/patheplayer'>
<TwitterIcon /> Twitter
<TwitterIcon /> <span>Twitter</span>
</SocialLink>
<SocialLink link='https://github.com/pathephone'>
<GithubIcon /> GitHub
<GithubIcon /> <span>GitHub</span>
</SocialLink>
</small>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@

.socialLink {
display: flex;
align-items: center;
border-radius: 2px;
color: black;
margin: 0 1em;
Expand All @@ -13,4 +15,8 @@
.socialLink:active {
background-color: var(--accent-color);
color: white;
}

.socialLink span {
margin-left: 0.5em;
}

0 comments on commit 98cdc92

Please sign in to comment.