styling(core): add star background

This commit is contained in:
2025-08-21 01:58:06 +02:00
parent 8922465d60
commit 8d8aee3fbd
7 changed files with 124 additions and 3 deletions

View File

@@ -1,10 +1,11 @@
import { Component } from '@angular/core';
import { RouterOutlet } from '@angular/router';
import { ThemeSwitchService } from './core/service/theme-switch.service';
import { Background } from "./core/components/background/background";
@Component({
selector: 'app-root',
imports: [RouterOutlet],
imports: [RouterOutlet, Background],
templateUrl: './app.html',
})
export class App {