changed header and hero img

This commit is contained in:
sdarbinyan
2026-02-14 00:45:17 +04:00
parent 39290ef776
commit 88ac37ebc4
26 changed files with 1574 additions and 92 deletions

View File

@@ -4,11 +4,12 @@ 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" />`,
template: `<img [src]="logoPath" [alt]="brandName + ' logo'" class="logo-img" fetchpriority="high" />`,
styles: [`
.logo-img {
height: 40px;
width: auto;
width: 100%;
height: 100%;
object-fit: contain;
}
`]
})