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