From 230133ec79b9ecc926f6e7c22f4185d75ab617c1 Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Tue, 7 Jul 2020 10:38:19 -0700 Subject: [PATCH] Adding site-config file --- .../components/site-config.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/gatsby-ipfs-web-wallet/components/site-config.js diff --git a/src/gatsby-ipfs-web-wallet/components/site-config.js b/src/gatsby-ipfs-web-wallet/components/site-config.js new file mode 100644 index 0000000..60bbaf2 --- /dev/null +++ b/src/gatsby-ipfs-web-wallet/components/site-config.js @@ -0,0 +1,13 @@ +/* + This file is intended to be overwritten. It provides a common place to store + site configuration data. +*/ + +const config = { + title: 'Wallet Demo', + titleShort: 'Demo', + balanceText: 'BCH Balance', + balanceIcon: 'fab-bitcoin' +} + +module.exports = config