frontend cleanup

This commit is contained in:
Priler 2026-01-04 22:50:34 +05:00
parent 78eb0c0080
commit 4ceaa7ff20
38 changed files with 2873 additions and 1180 deletions

19
frontend/_src/App.svelte Normal file
View file

@ -0,0 +1,19 @@
<!-- src/App.svelte -->
<script>
import { Router } from "@roxi/routify";
import routes from "../.routify/routes.default.js";
import { SvelteUIProvider } from '@svelteuidev/core';
import Events from "./Events.svelte";
/** START LISTENING **/
// import { startListening } from "./functions";
// startListening();
</script>
<SvelteUIProvider themeObserver='dark' withNormalizeCSS withGlobalStyles>
<Router {routes} />
</SvelteUIProvider>
<Events />