2026-02-26 21:54:21 +04:00
|
|
|
import { Component, ChangeDetectionStrategy } from '@angular/core';
|
2026-01-18 18:57:06 +04:00
|
|
|
import { RouterLink } from '@angular/router';
|
|
|
|
|
import { environment } from '../../../../environments/environment';
|
|
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-payment-terms',
|
2026-02-19 01:23:25 +04:00
|
|
|
imports: [RouterLink],
|
2026-01-18 18:57:06 +04:00
|
|
|
templateUrl: './payment-terms.component.html',
|
2026-02-26 21:54:21 +04:00
|
|
|
styleUrls: ['./payment-terms.component.scss'],
|
|
|
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
2026-01-18 18:57:06 +04:00
|
|
|
})
|
|
|
|
|
export class PaymentTermsComponent {
|
|
|
|
|
brandName = environment.brandName;
|
|
|
|
|
contactEmail = environment.contactEmail;
|
|
|
|
|
isnovo = environment.theme === 'novo';
|
|
|
|
|
}
|