Skip to content

Commit aed9f80

Browse files
committed
fix: Add runner.html for when Studio is off
1 parent 3d80377 commit aed9f80

File tree

1 file changed

+90
-0
lines changed

1 file changed

+90
-0
lines changed

public/running.html

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<title>Harper is Running!</title>
5+
<link rel="icon" type="image/svg+xml" href="/HDBDogOnly.svg" />
6+
<link rel="icon" type="dynamic-favicon" href="/favicon_purple.png" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8+
<style>
9+
* {
10+
padding: 0;
11+
margin: 0;
12+
}
13+
14+
#app-bg-color,
15+
#app-bg-dots {
16+
bottom: 0;
17+
height: 100vh;
18+
left: 0;
19+
position: fixed;
20+
right: 0;
21+
top: 0;
22+
width: 100vw;
23+
}
24+
25+
#app-bg-color {
26+
background: linear-gradient(45deg, #312556, #403b8a, #7a3a87) !important;
27+
z-index: -2;
28+
}
29+
30+
#app-bg-dots {
31+
background: radial-gradient(#403b8a 1px, transparent 0);
32+
background-size: 3px 3px;
33+
z-index: -1;
34+
}
35+
36+
#content {
37+
display: flex;
38+
flex-direction: column;
39+
justify-content: center;
40+
align-items: center;
41+
width: 100vw;
42+
height: 100vh;
43+
font-family: helvetica, sans-serif;
44+
color: #efefef;
45+
font-size: 12px;
46+
line-height: 1.5;
47+
}
48+
49+
ul {
50+
margin: 0;
51+
padding-inline-start: 10px;
52+
}
53+
54+
a {
55+
color: #efefef;
56+
}
57+
58+
hr {
59+
width: 153px;
60+
background-color: #efefef;
61+
/* Modern Browsers */
62+
border: 0 none;
63+
color: #efefef;
64+
height: 1px !important;
65+
overflow: hidden;
66+
margin: 10px 0;
67+
}
68+
</style>
69+
</head>
70+
71+
<body>
72+
<div id="content">
73+
<img src="/HDBDogOnly.svg" width="100px" height="100px" alt="Harper Logo" />
74+
<hr />
75+
Harper is running!
76+
<hr />
77+
Ready to learn more?
78+
<ul>
79+
<li><a href="https://studio.harperdb.io" target="_blank" rel="noopener noreferrer">
80+
Harper Studio</a></li>
81+
<li><a href="https://docs.harperdb.io" target="_blank" rel="noopener noreferrer">
82+
Harper Documentation</a></li>
83+
<li><a href="https://api.harperdb.io/" target="_blank" rel="noopener noreferrer">
84+
Harper API Examples</a></li>
85+
</ul>
86+
</div>
87+
<div id="app-bg-color"></div>
88+
<div id="app-bg-dots"></div>
89+
</body>
90+
</html>

0 commit comments

Comments
 (0)