Files
marketplaces/src/app/pages/info/delivery/delivery.component.ts

17 lines
497 B
TypeScript
Raw Normal View History

2026-01-18 18:57:06 +04:00
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';
}