16 lines
490 B
TypeScript
16 lines
490 B
TypeScript
import { Component, ChangeDetectionStrategy } from '@angular/core';
|
|
import { environment } from '../../../../environments/environment';
|
|
|
|
@Component({
|
|
selector: 'app-delivery',
|
|
imports: [],
|
|
templateUrl: './delivery.component.html',
|
|
styleUrls: ['./delivery.component.scss'],
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
})
|
|
export class DeliveryComponent {
|
|
brandName = environment.brandName;
|
|
contactEmail = environment.contactEmail;
|
|
isnovo = environment.theme === 'novo';
|
|
}
|