diff --git a/src/components/footer/index.js b/src/components/footer/index.js index 14d7cf0..041fd18 100644 --- a/src/components/footer/index.js +++ b/src/components/footer/index.js @@ -65,18 +65,18 @@ class Footer extends React.Component {

Produced By

- Permissionless Software Foundation + {siteConfig.hostText}

Source Code

@@ -96,8 +96,8 @@ class Footer extends React.Component { Web | - - wallet.fullstack.cash + + {siteConfig.clearWebUrl} @@ -106,8 +106,8 @@ class Footer extends React.Component { Tor | - - 2egutot63q765ciwsenlcy5zdyxwxt7olzbldr5dx5i3ixsef2nvrzid.onion + + {siteConfig.torUrl} diff --git a/src/components/site-config.js b/src/components/site-config.js index ab652d7..6953279 100644 --- a/src/components/site-config.js +++ b/src/components/site-config.js @@ -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