summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorOleg Pykhalov <go.wigust@gmail.com>2020-11-14 01:38:04 +0000
committerOleg Pykhalov <go.wigust@gmail.com>2020-11-14 06:40:23 +0300
commit05289bb5efcf92b2cd3960bded36783fed261445 (patch)
tree7f021d6d23ba833712c0fb44130af16aef6f75b0 /src
parentDelete box-shadow on repositories grid. (diff)
downloadgithunt-05289bb5efcf92b2cd3960bded36783fed261445.tar.gz
Clean up top-nav.b
Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/top-nav/index.js30
1 files changed, 2 insertions, 28 deletions
diff --git a/src/components/top-nav/index.js b/src/components/top-nav/index.js
index ff7b350..ccf0152 100644
--- a/src/components/top-nav/index.js
+++ b/src/components/top-nav/index.js
@@ -15,7 +15,7 @@ class TopNav extends React.Component {
return (
<div className='top-nav'>
<div className="container clearfix">
- <a href='https://github.com/kamranahmedse/githunt'
+ <a href='https://githunt.wugi.info/'
rel="noopener noreferrer"
target='_blank'
className="logo clearfix float-left">
@@ -27,36 +27,10 @@ class TopNav extends React.Component {
</div>
</a>
<div className="float-right external-btns">
- <a href='http://github.com/kamranahmedse/githunt'
+ <a href='https://cgit.duckdns.org/github/githunt/'
target='_blank'
rel="noopener noreferrer"
className="btn btn-dark"><i className="fa fa-github mr-1"></i> View Source</a>
- {
- !isRunningExtension && (
- <a href='https://goo.gl/e7YP1h'
- target='_blank'
- rel="noopener noreferrer"
- className="btn btn-danger d-none d-sm-none d-md-inline-block d-xl-inline-block d-lg-inline-block">
- <i className="fa fa-chrome mr-1"></i> Use Extension
- </a>
- )
- }
- {
- isRunningExtension && (
- <a href='https://twitter.com/kamranahmedse'
- target='_blank'
- rel="noopener noreferrer"
- className="btn btn-danger d-none d-sm-none d-md-inline-block d-xl-inline-block d-lg-inline-block">
- <i className="fa fa-comment mr-1"></i> Give Feedback
- </a>
- )
- }
- <a href={ `https://twitter.com/intent/tweet?text=${this.tweet}` }
- target='_blank'
- rel="noopener noreferrer"
- className="btn btn-primary btn-tweet d-none d-sm-none d-md-none d-xl-inline-block d-lg-inline-block">
- <i className="fa fa-twitter mr-1"></i> Tweet
- </a>
</div>
</div>
</div>