Initial commit

This commit is contained in:
2025-02-07 09:27:23 +01:00
commit 57cf5e617a
47 changed files with 6590 additions and 0 deletions

22
frontend/src/App.svelte Normal file
View File

@ -0,0 +1,22 @@
<script lang="ts">
import "./app.css";
import { Navbar, NavBrand, DarkMode } from "flowbite-svelte";
import { Router, Route } from "svelte-routing";
import Home from "./routes/Home.svelte";
import "./app.css";
export let url = "";
</script>
<main class="flex-col h-screen items-center bg-gray-50 dark:bg-gray-800">
<Navbar>
<NavBrand>
<span>Wails</span>
</NavBrand>
<DarkMode />
</Navbar>
<Router {url}>
<div>
<Route path="/"><Home /></Route>
</div>
</Router>
</main>