minor change to banner

This commit is contained in:
2026-06-21 06:12:28 +00:00
parent 1b537b3dfd
commit 7883f1f978
2 changed files with 4 additions and 5 deletions
+2 -3
View File
@@ -3,10 +3,9 @@
<a routerLink="/" class="navbar-brand" routerLinkActive="active">
<img [src]="config().logo_url" alt="" class="brand-flower" aria-hidden="true">
<span class="brand-name">
<span class="brand-mountain">{{ config().name_primary | slice:0:1 }}</span>{{ config().name_primary | uppercase }}
<span class="brand-accent">{{ config().name_secondary | uppercase }}</span>
<span class="brand-mountain">{{ config().callsign | uppercase }}</span>
<span class="brand-tagline">{{ config().tagline }}</span>
</span>
<span class="brand-tagline">{{ config().tagline }}</span>
</a>
<button class="navbar-toggle" aria-label="Toggle menu" (click)="toggleMenu()">
+2 -2
View File
@@ -1,5 +1,5 @@
import { Component, DestroyRef, inject, computed, OnInit } from '@angular/core';
import { CommonModule, SlicePipe, UpperCasePipe } from '@angular/common';
import { CommonModule, UpperCasePipe } from '@angular/common';
import { RouterLink, RouterLinkActive, Router } from '@angular/router';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
@@ -9,7 +9,7 @@ import { StationConfigService } from '../services/station-config.service';
@Component({
selector: 'app-navbar',
standalone: true,
imports: [CommonModule, RouterLink, RouterLinkActive, SlicePipe, UpperCasePipe],
imports: [CommonModule, UpperCasePipe, RouterLink, RouterLinkActive],
templateUrl: './navbar.component.html',
styleUrl: './navbar.component.scss',
})