split todo backend and frontend

This commit is contained in:
jane 2021-09-22 19:08:53 -04:00
commit c8291e66ac
111 changed files with 27132 additions and 0 deletions

View file

@ -0,0 +1,24 @@
<script>
// import Nav from '../components/Nav.svelte';
// export let segment;
import Header from '../components/Header.svelte';
</script>
<style>
main {
position: relative;
max-width: 56em;
background-color: white;
padding: 2em;
margin: 0 auto;
box-sizing: border-box;
}
</style>
<!-- <Nav {segment}/> -->
<Header />
<main>
<slot></slot>
</main>

View file

@ -0,0 +1,7 @@
<svelte:head>
<title>About</title>
</svelte:head>
<h1>About this site</h1>
<p>This is the 'about' page. There's not much here.</p>

View file

@ -0,0 +1,9 @@
<script>
</script>
<svelte:head>
<title>Todo</title>
</svelte:head>
<style>
</style>

View file