feat: add shard status page

This commit is contained in:
spiral
2022-01-11 22:09:50 -05:00
parent e897a33c41
commit b6da842206
4 changed files with 209 additions and 1 deletions

View File

@@ -7,6 +7,7 @@
import Footer from './lib/Footer.svelte';
import Public from "./pages/Public.svelte";
import Main from "./pages/profiles/Main.svelte";
import Status from './pages/status.svelte';
// theme cdns (I might make some myself too)
let light = "https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css";
@@ -64,5 +65,6 @@
<Route path = "profile/g">
hey please provide a group
</Route>
<Route path="status"><Status /></Route>
<Footer />
</Router>