feat: a whole lot of stuff

This commit is contained in:
Spectralitree
2021-12-11 12:01:36 +01:00
parent a2f22843ee
commit eba1a4543f
10 changed files with 428 additions and 36 deletions

View File

@@ -1,6 +1,8 @@
<script lang="ts">
import { Router, Link, Route } from "svelte-navigator";
import Navigation from "./lib/Navigation.svelte";
import Dash from "./pages/Dash.svelte";
import Home from "./pages/Home.svelte";
// theme cdns (I might make some myself too)
@@ -40,7 +42,10 @@
<Navigation bind:style={style}/>
<div>
<Route path="/">
<h2>Ooga booga</h2>
<Home />
</Route>
<Route path="/dash">
<Dash />
</Route>
</div>
</Router>