diff --git a/frontend/src/app/shared/components/navbar/navbar.component.html b/frontend/src/app/shared/components/navbar/navbar.component.html index d8009eb..451b942 100644 --- a/frontend/src/app/shared/components/navbar/navbar.component.html +++ b/frontend/src/app/shared/components/navbar/navbar.component.html @@ -14,7 +14,7 @@ routerLink="/home" class="flex items-center px-4 py-2 text-white/90 hover:text-white font-medium rounded-lg hover:bg-white/10 transition-colors duration-200" > - gamess + gamess Spiele @@ -69,7 +69,7 @@ class="flex items-center px-4 py-2 bg-emerald-600 text-white font-medium rounded-lg hover:bg-emerald-500 transition-colors duration-200" (click)="openDepositModal()" > - deposits + deposits Einzahlen @@ -82,7 +82,7 @@ class="flex items-center px-4 py-2 bg-slate-700 text-white font-medium rounded-lg hover:bg-slate-600 border border-slate-600 transition-colors duration-200" (click)="openTransactionModal()" > - transactions + transactions Transaktionen @@ -151,7 +151,7 @@ routerLink="/home" class="flex items-center px-4 py-3 text-white/90 hover:text-white hover:bg-white/10 rounded-lg transition-colors duration-200" > - gamess + gamess Spiele diff --git a/frontend/src/app/shared/components/navbar/navbar.component.ts b/frontend/src/app/shared/components/navbar/navbar.component.ts index 87f4552..2d17ca5 100644 --- a/frontend/src/app/shared/components/navbar/navbar.component.ts +++ b/frontend/src/app/shared/components/navbar/navbar.component.ts @@ -8,12 +8,12 @@ import { Output, signal, } from '@angular/core'; -import {RouterModule} from '@angular/router'; -import {AuthService} from '@service/auth.service'; -import {Subscription} from 'rxjs'; -import {AnimatedNumberComponent} from '@blackjack/components/animated-number/animated-number.component'; -import {DepositComponent} from '../../../feature/deposit/deposit.component'; -import {TransactionHistoryComponent} from '../../../feature/transaction-history/transaction-history.component'; +import { RouterModule } from '@angular/router'; +import { AuthService } from '@service/auth.service'; +import { Subscription } from 'rxjs'; +import { AnimatedNumberComponent } from '@blackjack/components/animated-number/animated-number.component'; +import { DepositComponent } from '../../../feature/deposit/deposit.component'; +import { TransactionHistoryComponent } from '../../../feature/transaction-history/transaction-history.component'; @Component({ selector: 'app-navbar',