owlboard-svelte/src/routes/+page.svelte

8 lines
232 B
Svelte
Raw Normal View History

2023-06-12 19:16:39 +01:00
<script>
2023-06-12 19:31:42 +01:00
import Menu from '../components/header-menu.svelte'
2023-06-12 19:29:33 +01:00
export const prerender = true;
2023-06-12 19:16:39 +01:00
</script>
<Menu />
2023-06-12 19:02:49 +01:00
<h1>Welcome to SvelteKit</h1>
<p>Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the documentation</p>