aotds-docks/src/routes/index.svelte

17 lines
317 B
Svelte
Raw Normal View History

2021-05-17 13:48:31 +00:00
<App />
<svelte:head>
{#each stylesheets as href (href)}
<link rel="stylesheet" {href} />
{/each}
</svelte:head>
2021-05-17 13:48:31 +00:00
<script>
2022-02-28 20:11:21 +00:00
import '../../static/fonts/faktos.css';
import '../../static/fonts/dosis/dosis.css';
import '../../static/global.css';
2021-05-17 13:48:31 +00:00
2022-02-28 20:11:21 +00:00
import App from "$lib/components/App.svelte";
</script>