forked from paritytech/substrate-telemetry
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from KasarLabs/feat/display-front
Feat/display front
- Loading branch information
Showing
22 changed files
with
315 additions
and
6,119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,30 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1, shrink-to-fit=no" | ||
/> | ||
<meta name="theme-color" content="#000000" /> | ||
<title>Deoxys Telemetry</title> | ||
<script type="text/javascript" src="/tmp/env-config.js"></script> | ||
<style> | ||
body, | ||
html { | ||
background: #fff; | ||
color: #111; | ||
} | ||
</style> | ||
<link rel="icon" type="image/png+xml" href="/favicon.svg" /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" | ||
rel="stylesheet" | ||
/> | ||
</head> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<meta name="theme-color" content="#000000"> | ||
<title>Deoxys Telemetry</title> | ||
<script type="text/javascript" src="/tmp/env-config.js"></script> | ||
<style> | ||
body, | ||
html { | ||
background: #fff; | ||
color: #111; | ||
} | ||
</style> | ||
<link rel="icon" type="image/png+xml" href="/favicon.ico"> | ||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet"> | ||
</head> | ||
|
||
<body> | ||
<noscript> | ||
You need to enable JavaScript to run this app. | ||
</noscript> | ||
<div id="root"></div> | ||
</body> | ||
|
||
</html> | ||
<body> | ||
<noscript> You need to enable JavaScript to run this app. </noscript> | ||
<div id="root"></div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* Footer.module.css */ | ||
|
||
.main-footer { | ||
width: 100%; | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
padding: 0px 15%; | ||
padding: 20px 15%; | ||
} | ||
.img-footer { | ||
width: 50px; | ||
height: 50px; | ||
} | ||
|
||
.col-footer { | ||
display: flex; | ||
align-items: start; | ||
justify-content: center; | ||
flex-direction: column; | ||
gap: 10px; | ||
} | ||
|
||
.text-footer { | ||
margin: 0; | ||
font-size: 14px; | ||
} | ||
|
||
.icons-row-footer { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
gap: 5px; | ||
} | ||
|
||
.icon-footer { | ||
width: 35px; | ||
height: 35px; | ||
color: #666; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import * as React from 'react'; | ||
import './Footer.css'; | ||
import kasarLogo from '../../assets/kasarLogo.png'; | ||
import { FaTwitter } from 'react-icons/fa'; | ||
import { FaTelegram } from 'react-icons/fa6'; | ||
import { FaGithub } from 'react-icons/fa'; | ||
|
||
export class Footer extends React.Component { | ||
public render() { | ||
return ( | ||
<div className="main-footer"> | ||
<div className="col-footer"> | ||
<img className="img-footer" src={kasarLogo} /> | ||
<p>©2023 KasarLabs. All Rights Reserved.</p> | ||
</div> | ||
<div className="col-footer"> | ||
<p className="text-bold text-footer">Products</p> | ||
<p className="text-footer">Starkcet</p> | ||
<p className="text-footer">Starknode</p> | ||
</div> | ||
<div className="col-footer"> | ||
<p className="text-bold text-footer">Contact us</p> | ||
<div className="icons-row-footer"> | ||
<FaTwitter className="icon-footer" /> | ||
<FaTelegram className="icon-footer" /> | ||
<FaGithub className="icon-footer" /> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.