From 5f8596cfd5435b2643f980fae8e8e0eb21c248fd Mon Sep 17 00:00:00 2001 From: Ben Zhang Date: Mon, 15 Jul 2024 21:54:52 +0000 Subject: [PATCH] Add legacy status page and useful links --- public/legacy.html | 407 +++++++++++++++++++++++++++++++++++++++++++++ src/App.css | 7 + src/App.tsx | 12 +- src/index.css | 9 +- 4 files changed, 433 insertions(+), 2 deletions(-) create mode 100644 public/legacy.html diff --git a/public/legacy.html b/public/legacy.html new file mode 100644 index 0000000..23e8768 --- /dev/null +++ b/public/legacy.html @@ -0,0 +1,407 @@ + + + + + + Healthchecks.io + + + + + +
+

WATcloud Status

+

+ This page contains the status of the WATcloud compute infrastructure. +

+

Useful links

+ +
+ +
+

All checks

+
+ +
+
+
+
+
+ + + + diff --git a/src/App.css b/src/App.css index 4d7b5cc..4e33d7b 100644 --- a/src/App.css +++ b/src/App.css @@ -21,3 +21,10 @@ mask-position 1s ease, -webkit-mask-position 1s ease; } + +.main-logo { + @apply text-inherit; + &:hover { + @apply text-inherit; + } +} \ No newline at end of file diff --git a/src/App.tsx b/src/App.tsx index c09d495..50234e2 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -36,7 +36,15 @@ function App() {
-

Options

+

Useful Links

+ +
+
+

Options

setShowInternal(!showInternal)} /> @@ -44,10 +52,12 @@ function App() {

Healthchecks.io

+

Monitoring data from healthchecks.io

Sentry

+

Monitoring data from watonomous.sentry.io

diff --git a/src/index.css b/src/index.css index 44e5dd9..1928359 100644 --- a/src/index.css +++ b/src/index.css @@ -47,7 +47,7 @@ */ .dark, :root[class~="dark"] { - --background: 222.2 84% 4.9%; + --background: rgba(17, 17, 17, 1); --foreground: 210 40% 98%; --card: 222.2 84% 4.9%; @@ -95,4 +95,11 @@ code { font-size: 0.8em; +} + +a { + @apply text-blue-500; + &:hover { + @apply underline; + } } \ No newline at end of file