More verbage on the About View

This commit is contained in:
Chris Troutner
2021-04-19 14:35:15 -07:00
parent 407c153c03
commit 8fc9243d06
+55 -29
View File
@@ -9,24 +9,24 @@ class About extends React.Component {
render () { render () {
return ( return (
<Content <Content
title='About' title="About"
subTitle='' subTitle=""
browserTitle='About | wallet.fullstack.cash' browserTitle="About | wallet.fullstack.cash"
> >
<Row> <Row>
<Col xs={12}> <Col xs={12}>
<Box <Box
title='wallet.fullstack.cash' title="wallet.fullstack.cash"
type='primary' type="primary"
closable closable
collapsable collapsable
> >
<p> <p>
This is the official web wallet provided by{' '} This is the official web wallet provided by{' '}
<a <a
href='https://fullstack.cash' href="https://fullstack.cash"
target='_blank' target="_blank"
rel='noopener noreferrer' rel="noopener noreferrer"
> >
FullStack.cash FullStack.cash
</a> </a>
@@ -41,17 +41,17 @@ class About extends React.Component {
Learn more about the code and infrastructure powering this Learn more about the code and infrastructure powering this
wallet at{' '} wallet at{' '}
<a <a
href='https://fullstack.cash' href="https://fullstack.cash"
target='_blank' target="_blank"
rel='noopener noreferrer' rel="noopener noreferrer"
> >
FullStack.cash FullStack.cash
</a>{' '} </a>{' '}
Please solicit feedback on this app in our{' '} Please solicit feedback on this app in our{' '}
<a <a
href='https://t.me/bch_js_toolkit' href="https://t.me/bch_js_toolkit"
target='_blank' target="_blank"
rel='noopener noreferrer' rel="noopener noreferrer"
> >
Telegram Channel Telegram Channel
</a> </a>
@@ -60,39 +60,40 @@ class About extends React.Component {
<p> <p>
The code for this web wallet can be found{' '} The code for this web wallet can be found{' '}
<a <a
href='https://github.com/Permissionless-Software-Foundation/wallet.fullstack.cash' href="https://github.com/Permissionless-Software-Foundation/wallet.fullstack.cash"
target='_blank' target="_blank"
rel='noopener noreferrer' rel="noopener noreferrer"
> >
on GitHub on GitHub
</a> </a>
. It's based on the{' '} . It's based on the{' '}
<a <a
href='https://github.com/Permissionless-Software-Foundation/bch-wallet-starter' href="https://github.com/Permissionless-Software-Foundation/bch-wallet-starter"
target='_blank' target="_blank"
rel='noopener noreferrer' rel="noopener noreferrer"
> >
bch-wallet-starter Gatsby Starter bch-wallet-starter Gatsby Starter
</a> </a>
, the{' '} , the{' '}
<a <a
href='https://github.com/Permissionless-Software-Foundation/gatsby-ipfs-web-wallet' href="https://github.com/Permissionless-Software-Foundation/gatsby-ipfs-web-wallet"
target='_blank' target="_blank"
rel='noopener noreferrer' rel="noopener noreferrer"
> >
gatsby-ipfs-web-wallet Gatsby Theme gatsby-ipfs-web-wallet Gatsby Theme
</a> </a>
, and the{' '} , and the{' '}
<a <a
href='https://github.com/Permissionless-Software-Foundation/minimal-slp-wallet' href="https://github.com/Permissionless-Software-Foundation/minimal-slp-wallet"
target='_blank' target="_blank"
rel='noopener noreferrer' rel="noopener noreferrer"
> >
minimal-slp-wallet minimal-slp-wallet
</a>{' '} </a>{' '}
wallet engine. We encourage other businesses to copy and modify wallet engine. We encourage other businesses to copy and modify
the wallet code for their own use. the wallet code for their own use.
</p> </p>
<p> <p>
This wallet has full support for Bitcoin Cash (BCH) and eCash This wallet has full support for Bitcoin Cash (BCH) and eCash
(BCHA) blockchains. That includes SLP tokens, including (BCHA) blockchains. That includes SLP tokens, including
@@ -102,14 +103,39 @@ class About extends React.Component {
It helps support the developers who work on this web wallet and It helps support the developers who work on this web wallet and
other software sponsored by the{' '} other software sponsored by the{' '}
<a <a
href='https://psfoundation.cash' href="https://psfoundation.cash"
target='_blank' target="_blank"
rel='noopener noreferrer' rel="noopener noreferrer"
> >
Permissionless Software Foundation Permissionless Software Foundation
</a> </a>
. .
</p> </p>
<p>
This app can be compiled into a native Android or iOS app using{' '}
<a
href="https://react-freelancer.ch/blog/build-mobile-apps-using-gatsby-and-capacitor"
target="_blank"
rel="noopener noreferrer"
>
Capacitor
</a>
. The Android APK for this app can be{' '}
<a
href="https://github.com/Permissionless-Software-Foundation/wallet.fullstack.cash"
target="_blank"
rel="noopener noreferrer"
>
downloaded from the GitHub repository
</a>
. But, the Android app will run into rate limits unless you add
a JWT token from FullStack.cash into the Configuration View. We
don't actively support use of this web app as a phone app, but
instead provide the APK as proof
that other businesses can fork this wallet app to kick-off
development of their own phone app.
</p>
</Box> </Box>
</Col> </Col>
</Row> </Row>