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