fix(customized): Customized for wallet.fullstack.cash

This commit is contained in:
Chris Troutner
2020-07-08 18:31:22 -07:00
parent a9d867654d
commit 255bf8198b
5 changed files with 54 additions and 21 deletions
+33
View File
@@ -0,0 +1,33 @@
/*
About
*/
import React from 'react'
import { Row, Col, Content, Box, Button } from 'adminlte-2-react'
class About extends React.Component {
render () {
return (
<Content
title='About'
subTitle=''
browserTitle='About | wallet.fullstack.cash'
>
<Row>
<Col xs={12}>
<Box
title='wallet.fullstack.cash'
type='primary'
closable
collapsable
>
This is the official web wallet provided by FullStack.cash.
</Box>
</Col>
</Row>
</Content>
)
}
}
export default About
@@ -8,15 +8,15 @@
import React from 'react'
import { Sidebar } from 'adminlte-2-react'
import DemoComponent from '../../demo-component'
import About from '../../about'
const { Item } = Sidebar
const MenuComponents = [
{
key: 'Demo Component',
component: <DemoComponent />,
menuItem: <Item icon='fas-cog' key='Demo Component' text='Demo Component' />
key: 'About',
component: <About />,
menuItem: <Item icon='fas-cog' key='About' text='About' />
}
]
@@ -4,8 +4,8 @@
*/
const config = {
title: 'Wallet Demo',
titleShort: 'Demo',
title: 'FullStack.cash',
titleShort: 'PSF',
balanceText: 'BCH Balance',
balanceIcon: 'fab-bitcoin'
}