Implemented following stuff

- Basic Material Design
- Default Component to see anything
- theme switching between light and dark
- language change between german and english
This commit is contained in:
2025-11-06 12:11:13 +01:00
parent 74823aeeeb
commit 46e5cd1e01
22 changed files with 5727 additions and 937 deletions

View File

@@ -1,6 +1,11 @@
import { bootstrapApplication } from '@angular/platform-browser';
import { appConfig } from './app/app.config';
import { App } from './app/app';
import packageJson from '../package.json';
if (packageJson.version) {
console.log(`🌟 Frontend version: ${packageJson.version}`);
}
bootstrapApplication(App, appConfig)
.catch((err) => console.error(err));