27 lines
448 B
Svelte
27 lines
448 B
Svelte
<script context="module">
|
|
export async function preload({ user }, page)
|
|
{
|
|
const res = await this.fetch(`/me`);
|
|
user = await res.json();
|
|
}
|
|
</script>
|
|
|
|
<script>
|
|
import Footer from '../components/Footer.svelte';
|
|
import Nav from '../components/Nav.svelte';
|
|
</script>
|
|
|
|
<style>
|
|
main {
|
|
max-width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
</style>
|
|
|
|
<Nav />
|
|
|
|
<main>
|
|
<slot></slot>
|
|
<Footer />
|
|
</main>
|