-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
61 lines (58 loc) · 1.64 KB
/
404.html
File metadata and controls
61 lines (58 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Cellpack Client</title>
<style>
html {
box-sizing: border-box;
}
html,
body,
main {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background-color: #ffffff;
color: #323233;
font-family: Lato, Arial, sans-serif;
}
#error-page-404 {
margin-top: 20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
a {
color: #0099ff;
&:hover,
&:focus-within {
text-decoration: underline;
}
}
}
</style>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet" />
<script type="module" src="/src/routes/gh_404.tsx"></script>
</head>
<body>
<div id="error-page-404">
<h1>Rerouting...</h1>
<p>The Cellpack Client encountered a 404 error when attempting to load this page.</p>
<p>
You should automatically be redirected to a working page. (If this doesn't work, your browser may have
JavaScript disabled, which the viewer needs to run.)
</p>
<br />
<p>
Return to our GitHub repository:
<a href="https://github.com/mesoscope/cellpack-client" target="_self" rel="noreferrer noopener">
https://github.com/mesoscope/cellpack-client
</a>
</p>
</div>
</body>
</html>