mirror of
https://github.com/fullstack-cash/wallet.fullstack.cash.git
synced 2026-09-22 01:02:06 -07:00
fix(customized): Customized for wallet.fullstack.cash
This commit is contained in:
@@ -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'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user