Skip to content

Commit a08805e

Browse files
Merge pull request #10 from StabilityNexus/UI
fix: changes in the UI
2 parents 3151a7f + 750feb8 commit a08805e

File tree

12 files changed

+2112
-940
lines changed

12 files changed

+2112
-940
lines changed

public/404.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>Redirecting...</title>
6+
<script>
7+
// Store the path and redirect to index.html
8+
sessionStorage.setItem(
9+
"redirect",
10+
location.pathname + location.search + location.hash
11+
);
12+
location.replace(
13+
location.origin +
14+
location.pathname.split("/").slice(0, -1).join("/") +
15+
"/"
16+
);
17+
</script>
18+
</head>
19+
<body>
20+
<noscript>
21+
<p>This app requires JavaScript to run.</p>
22+
</noscript>
23+
</body>
24+
</html>

0 commit comments

Comments
 (0)