17 lines
497 B
TypeScript
17 lines
497 B
TypeScript
|
|
import { Component } from '@angular/core';
|
|||
|
|
import { CommonModule } from '@angular/common';
|
|||
|
|
import { environment } from '../../../../environments/environment';
|
|||
|
|
|
|||
|
|
@Component({
|
|||
|
|
selector: 'app-delivery',
|
|||
|
|
standalone: true,
|
|||
|
|
imports: [CommonModule],
|
|||
|
|
templateUrl: './delivery.component.html',
|
|||
|
|
styleUrls: ['./delivery.component.scss']
|
|||
|
|
})
|
|||
|
|
export class DeliveryComponent {
|
|||
|
|
brandName = environment.brandName;
|
|||
|
|
contactEmail = environment.contactEmail;
|
|||
|
|
isnovo = environment.theme === 'novo';
|
|||
|
|
}
|