very first commit

This commit is contained in:
sdarbinyan
2026-01-18 18:57:06 +04:00
commit bd80896886
152 changed files with 28211 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import { Component } from '@angular/core';
import { environment } from '../../../environments/environment';
@Component({
selector: 'app-logo',
standalone: true,
template: `<img [src]="logoPath" [alt]="brandName + ' logo'" class="logo-img" width="120" height="40" fetchpriority="high" />`,
styles: [`
.logo-img {
height: 40px;
width: auto;
}
`]
})
export class LogoComponent {
brandName = environment.brandName;
logoPath = `/assets/images/${environment.theme}-logo.svg`;
}