Files
marketplaces/src/app/pages/info/delivery/delivery.component.ts
2026-02-19 01:23:25 +04:00

15 lines
414 B
TypeScript

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