optimising and making it better

This commit is contained in:
sdarbinyan
2026-02-26 21:54:21 +04:00
parent 7a00a8f1e3
commit 10b4974719
58 changed files with 318 additions and 1804 deletions

View File

@@ -1,11 +1,12 @@
import { Component } from '@angular/core';
import { Component, ChangeDetectionStrategy } from '@angular/core';
import { environment } from '../../../../environments/environment';
@Component({
selector: 'app-about',
imports: [],
templateUrl: './about.component.html',
styleUrls: ['./about.component.scss']
styleUrls: ['./about.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
})
export class AboutComponent {
brandName = environment.brandName;

View File

@@ -1,11 +1,12 @@
import { Component } from '@angular/core';
import { Component, ChangeDetectionStrategy } from '@angular/core';
import { environment } from '../../../../environments/environment';
@Component({
selector: 'app-contacts',
imports: [],
templateUrl: './contacts.component.html',
styleUrls: ['./contacts.component.scss']
styleUrls: ['./contacts.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
})
export class ContactsComponent {
brandName = environment.brandName;

View File

@@ -1,11 +1,12 @@
import { Component } from '@angular/core';
import { Component, ChangeDetectionStrategy } from '@angular/core';
import { environment } from '../../../../environments/environment';
@Component({
selector: 'app-delivery',
imports: [],
templateUrl: './delivery.component.html',
styleUrls: ['./delivery.component.scss']
styleUrls: ['./delivery.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
})
export class DeliveryComponent {
brandName = environment.brandName;

View File

@@ -1,11 +1,12 @@
import { Component } from '@angular/core';
import { Component, ChangeDetectionStrategy } from '@angular/core';
import { environment } from '../../../../environments/environment';
@Component({
selector: 'app-faq',
imports: [],
templateUrl: './faq.component.html',
styleUrls: ['./faq.component.scss']
styleUrls: ['./faq.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
})
export class FaqComponent {
brandName = environment.brandName;

View File

@@ -1,11 +1,12 @@
import { Component } from '@angular/core';
import { Component, ChangeDetectionStrategy } from '@angular/core';
import { environment } from '../../../../environments/environment';
@Component({
selector: 'app-guarantee',
imports: [],
templateUrl: './guarantee.component.html',
styleUrls: ['./guarantee.component.scss']
styleUrls: ['./guarantee.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
})
export class GuaranteeComponent {
brandName = environment.brandName;