feat: add completed Web-Frontend in Svelte with some new Features

- Added import of Schedules
- Added export for schedule table
- Added import of logo
- Added password change to users
- improved ui/ux
This commit is contained in:
Patryk Hegenberg 2026-01-15 15:19:53 +01:00
parent 5788d8c767
commit e719f4565f
32 changed files with 4290 additions and 87 deletions

9
frontend/src/main.js Normal file
View file

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