Skip to content

Commit ce0f44d

Browse files
committed
Skeleton - everything except the specific components for each KPI view
1 parent 1c8b660 commit ce0f44d

26 files changed

+964
-2
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
package-lock.json

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +0,0 @@
1-
# LivepeerPerformanceTranscoder
2-
Dashboard for transcoders, their pricing and performance

package.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "LivepeerDashboardTranscoder",
3+
"version": "0.0.1",
4+
"private": true,
5+
"dependencies": {
6+
"http": "^0.0.1-security",
7+
"https": "^1.0.0",
8+
"react": "^18.2.0",
9+
"react-dom": "^18.2.0",
10+
"react-router-dom": "^6.0.2",
11+
"react-scripts": "^5.0.1"
12+
},
13+
"scripts": {
14+
"start": "react-scripts start",
15+
"build": "react-scripts build",
16+
"test": "react-scripts test",
17+
"eject": "react-scripts eject"
18+
},
19+
"eslintConfig": {
20+
"extends": "react-app"
21+
},
22+
"browserslist": {
23+
"production": [
24+
">0.2%",
25+
"not dead",
26+
"not op_mini all"
27+
],
28+
"development": [
29+
"last 1 chrome version",
30+
"last 1 firefox version",
31+
"last 1 safari version"
32+
]
33+
}
34+
}

public/50x.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Error</title>
5+
<style>
6+
body {
7+
width: 35em;
8+
margin: 0 auto;
9+
font-family: Tahoma, Verdana, Arial, sans-serif;
10+
}
11+
</style>
12+
</head>
13+
<body>
14+
<h1>An error occurred.</h1>
15+
<p>Sorry, the page you are looking for is currently unavailable.<br/>
16+
Please try again later.</p>
17+
<p>If you are the system administrator of this resource then you should check
18+
the error log for details.</p>
19+
<p><em>Faithfully yours, nginx.</em></p>
20+
</body>
21+
</html>

public/android-chrome-192x192.png

40.4 KB
Loading

public/android-chrome-512x512.png

213 KB
Loading

public/apple-touch-icon.png

36.3 KB
Loading

public/favicon-16x16.png

909 Bytes
Loading

public/favicon-32x32.png

2.28 KB
Loading

public/favicon.ico

15 KB
Binary file not shown.

0 commit comments

Comments
 (0)