import { ChangeDetectionStrategy, Component } from '@angular/core'; @Component({ selector: 'app-privacy', standalone: true, imports: [], templateUrl: './privacy.component.html', styleUrls: ['./privacy.component.scss'], changeDetection: ChangeDetectionStrategy.OnPush, }) export class PrivacyComponent {}