Add Svelte 5 frontend (App, TitleBar, BlockRing, ModelStack, WeeklyBar, Settings)

This commit is contained in:
megaproxy 2026-05-09 00:07:02 +01:00
parent 14ffcf4bd3
commit 0e8a87fbc5
17 changed files with 779 additions and 0 deletions

7
src/main.ts Normal file
View file

@ -0,0 +1,7 @@
import { mount } from "svelte";
import App from "./components/App.svelte";
import "./styles.css";
const app = mount(App, { target: document.getElementById("app")! });
export default app;