Files
homeservice/webui/src/routes/+page.svelte
Thomas Klaehn 109b64cdbd Fix: webui
2023-02-09 10:22:24 +01:00

16 lines
285 B
Svelte

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