aotds-docks/src/routes/index.svelte

21 lines
377 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>
import { base } from "$app/paths";
import App from "../components/App.svelte";
2021-05-17 13:48:31 +00:00
const stylesheets = [
"/bulma/bulma.css",
"/fonts/faktos.css",
"/fonts/dosis/dosis.css",
"/global.css",
].map((ss) => base + ss);
</script>