homeservice/webui/src/routes/+page.svelte
Thomas Klaehn e11f757c6e Add sauna
2023-01-31 11:24:55 +01:00

16 lines
286 B
Svelte

<script>
import icon from "../../static/haus.svg"
</script>
<svelte:head>
<title>Home</title>
<meta name="description" content="Home"/>
</svelte:head>
<section id='content_id' class='content'>
<figure>
<img src={icon} alt="Home" width=150/>
</figure>
<h1>Home</h1>
</section>