Compare commits
No commits in common. "b113c3f88ea71f8941f7202062c91001045257a8" and "d35739f014fd8277add9bc8eb388237efae032e8" have entirely different histories.
b113c3f88e
...
d35739f014
Before Width: | Height: | Size: 40 KiB |
Before Width: | Height: | Size: 213 KiB |
Before Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 909 B |
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 15 KiB |
BIN
public/favicon.png
Normal file
After Width: | Height: | Size: 70 KiB |
@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
||||
<link rel="icon" href="%PUBLIC_URL%/favicon.png" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="theme-color" content="#855dfe" />
|
||||
<meta
|
||||
|
BIN
public/logo.png
Before Width: | Height: | Size: 782 KiB After Width: | Height: | Size: 762 KiB |
@ -3,8 +3,8 @@
|
||||
"name": "nframe.nl",
|
||||
"icons": [
|
||||
{
|
||||
"src": "favicon.ico",
|
||||
"type": "image/x-icon"
|
||||
"src": "favicon.png",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"start_url": ".",
|
||||
|
@ -30,7 +30,7 @@ const Grafana = (obj) => {
|
||||
<button className="homeButton" onClick={() => {
|
||||
setRedirectToHome(true);
|
||||
}}>
|
||||
<img alt="" src="android-chrome-512x512.png" width="100em" style={{ zIndex: 10 }} />
|
||||
<img alt="" src="logo.png" width="100em" style={{ zIndex: 10 }} />
|
||||
</button>
|
||||
</div>
|
||||
<div className="verticalDivider" />
|
||||
|
@ -47,7 +47,7 @@ const Home = (obj) => {
|
||||
<div className="stroke">
|
||||
<div className="verticalDivider" />
|
||||
<div className="row">
|
||||
<img alt="" src="android-chrome-512x512.png" width="100em" style={{ zIndex: 10 }} />
|
||||
<img alt="" src="logo.png" width="100em" style={{ zIndex: 10 }} />
|
||||
</div>
|
||||
<div className="verticalDivider" />
|
||||
<div className="stroke roundedOpaque" style={{ maxWidth: '400px' }}>
|
||||
@ -131,6 +131,26 @@ const Home = (obj) => {
|
||||
</button>
|
||||
</a>
|
||||
<div className="verticalDivider" />
|
||||
<div className="row">
|
||||
<p>Contact me on:</p>
|
||||
</div>
|
||||
<a href="https://discordapp.com/users/303504235927044097">
|
||||
<button className="waveButton">
|
||||
<div className="row">
|
||||
<img alt="" src="discord.svg" width="20em" height="20em" style={{ margin: 0 }} />
|
||||
<p style={{ padding: '0.3em', flex: 1, flexGrow: 3 }}>Discord</p>
|
||||
</div>
|
||||
</button>
|
||||
</a>
|
||||
<a href="mailto:marco@livepeer.org">
|
||||
<button className="waveButton">
|
||||
<div className="row">
|
||||
<img alt="" src="email.png" width="20em" height="20em" style={{ margin: 0 }} />
|
||||
<p style={{ padding: '0.3em', flex: 1, flexGrow: 3 }}>Email</p>
|
||||
</div>
|
||||
</button>
|
||||
</a>
|
||||
<div className="verticalDivider" />
|
||||
<div className="row">
|
||||
<ContractPrices quotes={livepeer.quotes} blockchains={livepeer.blockchains} />
|
||||
</div>
|
||||
|
@ -61,8 +61,9 @@ const Livepeer = (obj) => {
|
||||
setRedirectToHome(true);
|
||||
}}>
|
||||
<div className="row">
|
||||
<img alt="" src="apple-touch-icon.png" width="40em" height="40em" />
|
||||
<img alt="" src={thisChad} width="40em" height="40em" />
|
||||
</div>
|
||||
<h1>🏠</h1>
|
||||
</button>
|
||||
<h4 className="rowAlignLeft withWrap showNeverOnMobile">{headerString}</h4>
|
||||
</div>
|
||||
|
@ -175,9 +175,7 @@ const Stats = (obj) => {
|
||||
<button className="homeButton" onClick={() => {
|
||||
setRedirectToHome(true);
|
||||
}}>
|
||||
<div className="row">
|
||||
<img alt="" src="apple-touch-icon.png" width="40em" height="40em" />
|
||||
</div>
|
||||
<h1>🏠</h1>
|
||||
</button>
|
||||
<h4 className="rowAlignLeft withWrap showNeverOnMobile">Statistics</h4>
|
||||
</div>
|
||||
|