add Status CTAs

This commit is contained in:
jinhojang6 2020-03-26 01:03:56 +09:00
parent 928c08ada7
commit b7758cd286
No known key found for this signature in database
GPG Key ID: 0E7AA62CB0D9E6F3
4 changed files with 41 additions and 7 deletions

View File

@ -65,6 +65,9 @@ class ChannelInfo extends Component {
pauseOnHover={false} pauseOnHover={false}
/> />
<div style={{ marginTop: '40px', display: 'flex'}}> <div style={{ marginTop: '40px', display: 'flex'}}>
<a href="https://status.im/get/" target='_blank' className='get-status'>
<img src={require("../images/symbol.png")} width="32px" height="auto"/>
</a>
<TwitterShareButton url={shareUrl} title={podcastTitle} hashtags={["ethstatus"]} className="social"> <TwitterShareButton url={shareUrl} title={podcastTitle} hashtags={["ethstatus"]} className="social">
<TwitterIcon size={32} round /> <TwitterIcon size={32} round />
</TwitterShareButton> </TwitterShareButton>
@ -74,12 +77,6 @@ class ChannelInfo extends Component {
<RedditShareButton url={shareUrl} title={podcastTitle} className="social"> <RedditShareButton url={shareUrl} title={podcastTitle} className="social">
<RedditIcon size={32} round /> <RedditIcon size={32} round />
</RedditShareButton> </RedditShareButton>
<TelegramShareButton url={shareUrl} title={podcastTitle} className="social">
<TelegramIcon size={32} round />
</TelegramShareButton>
<WhatsappShareButton url={shareUrl} title={podcastTitle} className="social">
<WhatsappIcon size={32} round />
</WhatsappShareButton>
<EmailShareButton url={shareUrl} className="social"> <EmailShareButton url={shareUrl} className="social">
<EmailIcon size={32} round /> <EmailIcon size={32} round />
</EmailShareButton> </EmailShareButton>

View File

@ -55,7 +55,17 @@ class Sidebar extends Component {
<h4>Upload</h4> <h4>Upload</h4>
</Link> </Link>
</li> </li>
<li className='sidebar-link settings'> <li className='sidebar-link cta settings'>
<a href="https://statusnetwork.com/" target="_bank">
<h4>The Status Network</h4>
</a>
</li>
<li className='sidebar-link cta margin-bottom-30'>
<a href="https://status.im/get/" target="_bank">
<h4>Get Status</h4>
</a>
</li>
<li className='sidebar-link'>
<Link to='/settings' activeClassName='sidebar-active' exact> <Link to='/settings' activeClassName='sidebar-active' exact>
<i className='fas fa-cog' /> <i className='fas fa-cog' />
<h4>Settings</h4> <h4>Settings</h4>

View File

@ -39,6 +39,21 @@
text-align: left; text-align: left;
} }
/* .get-status img {
margin-right: 5px;
} */
.get-status {
color: rgb(167, 167, 167);
background: none;
display: inline-block;
margin-right: 15px;
font-size: 1.4rem;
text-decoration: none;
}
.ChannelInfo-website { .ChannelInfo-website {
color: #fff; color: #fff;
background: #3498db; background: #3498db;

View File

@ -31,6 +31,14 @@
height: 100%; height: 100%;
} }
.margin-bottom-30 {
margin-bottom: 30px !important;
}
.cta:hover {
color: white !important;
}
.sidebar li { .sidebar li {
list-style: none; list-style: none;
} }
@ -42,6 +50,10 @@
color: #6d6d6d; color: #6d6d6d;
} }
.sidebar-link:hover {
color: #acacac;
}
.sidebar-link a { .sidebar-link a {
display: flex; display: flex;
align-items: center; align-items: center;