-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #114 from sickpig/new/add-contact-us
Add "Contact Us" page
- Loading branch information
Showing
7 changed files
with
73 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,6 +59,9 @@ export default React.createClass({ | |
<li> | ||
<Link to='/conferences'>{strings().footer.conferences}</Link> | ||
</li> | ||
<li> | ||
<Link to='/contact-us'>{strings().footer.contactus}</Link> | ||
</li> | ||
</ul> | ||
</div> | ||
<div className="col-footer col-md-4 col-xs-6"> | ||
|
@@ -79,6 +82,9 @@ export default React.createClass({ | |
<li> | ||
<a href="https://webchat.freenode.net/?channels=#btc">{strings().footer.irc}</a> | ||
</li> | ||
<li> | ||
<a href="mail:[email protected]">Report Security Issue</a> | ||
</li> | ||
</p> | ||
</div> | ||
<div className="col-footer col-md-2 col-xs-6"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
'use strict'; | ||
|
||
import React from 'react'; | ||
|
||
import Header from '../header.jsx'; | ||
import Footer from '../footer.jsx'; | ||
import { strings } from '../../lib/i18n'; | ||
import Title from '../components/title.jsx'; | ||
|
||
export default React.createClass({ | ||
|
||
render: function() { | ||
return ( | ||
<div id='contactus'> | ||
<Header active='contact-us' /> | ||
<Title title='Contact Us' /> | ||
<div className='section'> | ||
<div className='container'> | ||
<div className='row service-wrapper-row'> | ||
<div className='col-sm-4'> | ||
<div className='service-image'> | ||
<img src='/img/plato-aristotle.jpg' alt='Agora' /> | ||
</div> | ||
</div> | ||
<div className='col-sm-8'> | ||
<h2 className='green'>Get in contact</h2> | ||
<p> | ||
BitcoinUnlimited.info website does not provide general support on the BU projects, to get general support please have a look at these resources: | ||
</p> | ||
<ul> | ||
<li> | ||
<a href="https://www.bitco.in/forum">{strings().footer.forum}</a> | ||
</li> | ||
<li> | ||
<a href="https://reddit.com/r/btc">{strings().footer.reddit1}</a> | ||
</li> | ||
<li> | ||
<a href="https://reddit.com/r/bitcoin_unlimited">{strings().footer.reddit2}</a> | ||
</li> | ||
<li> | ||
<a href="mailto:[email protected]?subject=Bitcoin%20Unlimited%20Slack%20Invite&body=Hi%21%0D%0A%0D%0ACould%20you%20please%20invite%20me%20to%20the%20Bitcoin%20Unlimited%20Slack%20group%3F%20My%20email%20address%20is%20%5BINSERT%20EMAIL%20ADDRESS%20HERE%5D.%0D%0A%0D%0AThank%20you%21">{strings().footer.slack}</a> | ||
</li> | ||
<li> | ||
<a href="https://webchat.freenode.net/?channels=#btc">{strings().footer.irc}</a> | ||
</li> | ||
<li><a href='https://github.com/BitcoinUnlimited/BitcoinUnlimited/issues'>Issues Tracker</a></li> | ||
</ul> | ||
<p>To report about security issues, please use this email <a href="mailto:[email protected]">[email protected]</a> (don't use it for generic enquires).</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<Footer /> | ||
</div> | ||
); | ||
} | ||
|
||
}); |