mirror of
https://github.com/fullstack-cash/fullstack-gatsby-theme-bch-wallet.git
synced 2026-09-21 16:52:06 -07:00
fix(footer): Adding footer info to the site-config.js file
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user