replace status logo with assemble

This commit is contained in:
Barry Gitarts 2019-11-18 14:29:49 -05:00 committed by Barry G
parent ae210d4afe
commit 0cbf15859b
6 changed files with 7 additions and 6 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 825 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -45,13 +45,13 @@
}
}
</style>
<title>Liquid Funding</title>
<title>Assemble</title>
</head>
<body class="container">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="app">
<div id="loading" class="Loading-container">
<img class="Loading-logo" id="loading" src="%PUBLIC_URL%/images/status.png" />
<img class="Loading-logo" id="loading" src="%PUBLIC_URL%/images/assemble-high-res.png" />
</div>
</div>
<!--

View File

@ -1,9 +1,9 @@
{
"short_name": "Liquid Funding",
"name": "Liquid Funding by Status.im",
"short_name": "Assemble",
"name": "Assemble",
"icons": [
{
"src": "favicon.ico",
"src": "assemble.png",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
}

View File

@ -1,12 +1,13 @@
import React from 'react'
import Typography from '@material-ui/core/Typography'
import assemble from '../../images/assemble-high-res.png'
import './Loading.css'
function Loading() {
return (
<div className="Loading-container">
<img className="Loading-logo" id="loading" src="https://our.status.im/content/images/2018/07/status_logo_blue_1--2-.png" />
<img className="Loading-logo" id="loading" src={assemble} />
<Typography style={{ fontSize: '1.5rem' }}>Hold on while we gather the latest information</Typography>
<Typography style={{ fontSize: '1.2rem' }}>If this is your first visit it will take about a minute while we sync with the chain</Typography>
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB