mirror of
https://github.com/Damillora/phoebe.git
synced 2025-03-11 22:37:23 +00:00
15 lines
212 B
Svelte
15 lines
212 B
Svelte
|
<script>
|
||
|
import "../app.scss";
|
||
|
import Navbar from "$lib/components/Navbar.svelte";
|
||
|
|
||
|
export const ssr = false;
|
||
|
</script>
|
||
|
|
||
|
<svelte:head>
|
||
|
<title>Shioriko</title>
|
||
|
</svelte:head>
|
||
|
|
||
|
<Navbar />
|
||
|
|
||
|
<slot />
|