Skip to content

Commit d4195ac

Browse files
committed
deploy
0 parents  commit d4195ac

File tree

93 files changed

+293327
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+293327
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

.nojekyll

Whitespace-only changes.

404.html

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Single Page Apps for GitHub Pages</title>
6+
<script type="text/javascript">
7+
// Single Page Apps for GitHub Pages
8+
// MIT License
9+
// https://github.com/rafgraph/spa-github-pages
10+
// This script takes the current url and converts the path and query
11+
// string into just a query string, and then redirects the browser
12+
// to the new url with only a query string and hash fragment,
13+
// e.g. https://www.foo.tld/one/two?a=b&c=d#qwe, becomes
14+
// https://www.foo.tld/?/one/two&a=b~and~c=d#qwe
15+
// Note: this 404.html file must be at least 512 bytes for it to work
16+
// with Internet Explorer (it is currently > 512 bytes)
17+
18+
// If you're creating a Project Pages site and NOT using a custom domain,
19+
// then set pathSegmentsToKeep to 1 (enterprise users may need to set it to > 1).
20+
// This way the code will only replace the route part of the path, and not
21+
// the real directory in which the app resides, for example:
22+
// https://username.github.io/repo-name/one/two?a=b&c=d#qwe becomes
23+
// https://username.github.io/repo-name/?/one/two&a=b~and~c=d#qwe
24+
// Otherwise, leave pathSegmentsToKeep as 0.
25+
var pathSegmentsToKeep = 0;
26+
27+
var l = window.location;
28+
l.replace(
29+
l.protocol + '//' + l.hostname + (l.port ? ':' + l.port : '') +
30+
l.pathname.split('/').slice(0, 1 + pathSegmentsToKeep).join('/') + '/?/' +
31+
l.pathname.slice(1).split('/').slice(pathSegmentsToKeep).join('/').replace(/&/g, '~and~') +
32+
(l.search ? '&' + l.search.slice(1).replace(/&/g, '~and~') : '') +
33+
l.hash
34+
);
35+
36+
</script>
37+
</head>
38+
<body>
39+
</body>
40+
</html>

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
play.datav.io

dashboard/dark-rainbow.png

170 KB
Loading

dashboard/rainbow.jpg

237 KB
Loading

dashboard/universe.png

202 KB
Loading

empty-posts.png

27.9 KB
Loading

empty.svg

+1
Loading

favicon-32x32.png

13.6 KB
Loading

fonts/Inter.woff2

35.7 KB
Binary file not shown.

happy-dev.jpg

114 KB
Loading

index.html

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<link rel="icon" type="image/svg+xml" href="/favicon-32x32.png" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8+
<title>Datav | Observability platform</title>
9+
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/1.13.0/mapbox-gl.css">
10+
<script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/1.13.0/mapbox-gl.js"></script> -->
11+
<style>
12+
.svgLoader {
13+
animation: spin 2s linear infinite;
14+
margin: auto;
15+
}
16+
17+
#first-page-loading {
18+
position:fixed;
19+
top: 0;
20+
left: 0;
21+
right: 0;
22+
bottom: 0;
23+
display: flex;
24+
align-items: center;
25+
justify-content: center;
26+
flex-direction: column;
27+
font-size: 16px !important;
28+
font-weight: 500 !important;
29+
z-index: -1;
30+
/* background-color: #1A202C */
31+
}
32+
33+
@keyframes spin {
34+
0% {
35+
transform: rotate(0deg);
36+
}
37+
38+
100% {
39+
transform: rotate(360deg);
40+
}
41+
}
42+
</style>
43+
<script type="text/javascript">
44+
// Single Page Apps for GitHub Pages
45+
// MIT License
46+
// https://github.com/rafgraph/spa-github-pages
47+
// This script checks to see if a redirect is present in the query string,
48+
// converts it back into the correct url and adds it to the
49+
// browser's history using window.history.replaceState(...),
50+
// which won't cause the browser to attempt to load the new url.
51+
// When the single page app is loaded further down in this file,
52+
// the correct url will be waiting in the browser's history for
53+
// the single page app to route accordingly.
54+
(function (l) {
55+
if (l.search[1] === '/') {
56+
var decoded = l.search.slice(1).split('&').map(function (s) {
57+
return s.replace(/~and~/g, '&')
58+
}).join('?');
59+
window.history.replaceState(null, null,
60+
l.pathname.slice(0, -1) + decoded + l.hash
61+
);
62+
}
63+
}(window.location))
64+
</script>
65+
<script type="module" crossorigin src="/static/index-3a76b207.js"></script>
66+
<link rel="stylesheet" href="/static/index-e4b1c24a.css">
67+
</head>
68+
69+
<body>
70+
<div id="first-page-loading">
71+
<div><img class="svgLoader" src="/logo.png" width="60px" height="60px"/></div>
72+
<div style="color: rgb(0, 181, 216);">Loading JS/CSS and website Configs...</div>
73+
</div>
74+
<div id="root"></div>
75+
76+
<script>
77+
const colorMode = localStorage.getItem("chakra-ui-color-mode")
78+
if (colorMode === "dark") {
79+
document.body.style.backgroundColor = "#1A202C"
80+
} else {
81+
document.body.style.backgroundColor = "#fff"
82+
}
83+
</script>
84+
</body>
85+
86+
</html>

light-rust.svg

+1
Loading

login-bg.png

29.8 KB
Loading

login-bg.svg

+37
Loading

logo.png

13.6 KB
Loading

not-found.png

27.4 KB
Loading

plugins/datasource/external-http.svg

+26
Loading

0 commit comments

Comments
 (0)