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