refactor: remove docker folder, refactor frontend files

This commit is contained in:
Phan Huy Tran 2025-05-14 09:33:38 +02:00
commit 34ff29c7ac
27 changed files with 94 additions and 192 deletions

View file

@ -1,5 +1,3 @@
<app-navbar></app-navbar>
<div class="container mx-auto px-4 py-6 space-y-8">
<h1 class="text-3xl font-bold text-white mb-6">Spielautomaten</h1>

View file

@ -1,19 +1,11 @@
import {
ChangeDetectionStrategy,
Component,
inject,
OnInit,
OnDestroy,
signal,
} from '@angular/core';
import { NavbarComponent } from '@shared/components/navbar/navbar.component';
import { HttpClient } from '@angular/common/http';
import { CommonModule, KeyValuePipe, NgClass, CurrencyPipe } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { UserService } from '@service/user.service';
import { Subscription } from 'rxjs';
import { AnimatedNumberComponent } from '@blackjack/components/animated-number/animated-number.component';
import { AuthService } from '@service/auth.service';
import {ChangeDetectionStrategy, Component, inject, OnDestroy, OnInit, signal,} from '@angular/core';
import {HttpClient} from '@angular/common/http';
import {CommonModule, CurrencyPipe, KeyValuePipe, NgClass} from '@angular/common';
import {FormsModule} from '@angular/forms';
import {UserService} from '@service/user.service';
import {Subscription} from 'rxjs';
import {AnimatedNumberComponent} from '@blackjack/components/animated-number/animated-number.component';
import {AuthService} from '@service/auth.service';
interface SlotResult {
status: 'win' | 'lose' | 'blank' | 'start';
@ -26,7 +18,6 @@ interface SlotResult {
standalone: true,
imports: [
CommonModule,
NavbarComponent,
KeyValuePipe,
NgClass,
FormsModule,