📲 Adds initial svelte app with tailwind and typescript

This commit is contained in:
Rune Harlyk
2023-05-10 21:22:28 +02:00
parent 7593296a92
commit 07a99a6248
25 changed files with 4357 additions and 5 deletions
+10
View File
@@ -0,0 +1,10 @@
<script lang="ts">
import Topbar from './components/Topbar.svelte';
</script>
<main class="w-screen h-screen">
<Topbar />
<div class="flex justify-center items-center w-full h-full">
<h1>🎥Weee! This is the start project for the spot micro controller</h1>
</div>
</main>