2026-01-18 18:57:06 +04:00
|
|
|
import { Component } from '@angular/core';
|
|
|
|
|
import { environment } from '../../../environments/environment';
|
|
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-logo',
|
|
|
|
|
standalone: true,
|
2026-02-14 00:45:17 +04:00
|
|
|
template: `<img [src]="logoPath" [alt]="brandName + ' logo'" class="logo-img" fetchpriority="high" />`,
|
2026-01-18 18:57:06 +04:00
|
|
|
styles: [`
|
|
|
|
|
.logo-img {
|
2026-02-14 00:45:17 +04:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
object-fit: contain;
|
2026-01-18 18:57:06 +04:00
|
|
|
}
|
|
|
|
|
`]
|
|
|
|
|
})
|
|
|
|
|
export class LogoComponent {
|
|
|
|
|
brandName = environment.brandName;
|
|
|
|
|
logoPath = `/assets/images/${environment.theme}-logo.svg`;
|
|
|
|
|
}
|