fix(footer): Adding footer info to the site-config.js file

This commit is contained in:
Chris Troutner
2020-12-18 16:04:46 -08:00
parent 9c811bdd25
commit 73d7623774
2 changed files with 15 additions and 8 deletions
+7 -7
View File
@@ -65,18 +65,18 @@ class Footer extends React.Component {
<p className='section-tittle'>Produced By</p>
<a
href='https://psfoundation.cash/'
href={siteConfig.hostUrl}
target='_blank'
rel='noopener noreferrer'
>
Permissionless Software Foundation
{siteConfig.hostText}
</a>
</Col>
<Col md={12}>
<p className='section-tittle'>Source Code</p>
<FontAwesomeIcon className='' size='lg' icon={faGithub} />
<a
href='https://github.com/Permissionless-Software-Foundation/gatsby-ipfs-web-wallet'
href={siteConfig.sourceCode}
target='_blank'
rel='noopener noreferrer'
>
@@ -96,8 +96,8 @@ class Footer extends React.Component {
<b>Web</b>
</span>
<b>|</b>
<a href='https://wallet.fullstack.cash'>
wallet.fullstack.cash
<a href={siteConfig.clearWebUrl}>
{siteConfig.clearWebUrl}
</a>
</li>
@@ -106,8 +106,8 @@ class Footer extends React.Component {
<b>Tor</b>
</span>
<b>|</b>
<a href='http://2egutot63q765ciwsenlcy5zdyxwxt7olzbldr5dx5i3ixsef2nvrzid.onion/'>
2egutot63q765ciwsenlcy5zdyxwxt7olzbldr5dx5i3ixsef2nvrzid.onion
<a href={`http://${siteConfig.torUrl}`}>
{siteConfig.torUrl}
</a>
</li>
+8 -1
View File
@@ -11,7 +11,14 @@ const config = {
// The BCH address used in a memo.cash account. Used for tracking the IPFS
// hash of the mirror of this site.
memoAddr: 'bitcoincash:qqwdv3hkmvd5vk0uhwqrqnef54542e5ctvy3ppt0nq'
memoAddr: 'bitcoincash:qqwdv3hkmvd5vk0uhwqrqnef54542e5ctvy3ppt0nq',
// Footer Information
hostText: 'FullStack.cash',
hostUrl: 'https://fullstack.cash/',
sourceCode: 'https://github.com/Permissionless-Software-Foundation/gatsby-ipfs-web-wallet',
torUrl: '2egutot63q765ciwsenlcy5zdyxwxt7olzbldr5dx5i3ixsef2nvrzid.onion',
clearWebUrl: 'https://gatsby-ipfs-web-wallet.fullstack.cash'
}
module.exports = config