import { ChangeDetectionStrategy, Component, inject } from '@angular/core'; import { ContentService } from '../../../core/content/content.service'; import { PagePlaceholder } from '../../../shared/page-placeholder/page-placeholder'; @Component({ selector: 'app-services-clusters-page', changeDetection: ChangeDetectionStrategy.OnPush, imports: [PagePlaceholder], templateUrl: './clusters.html', }) export class ServicesClustersPage { protected readonly page = inject(ContentService).page('servicesClusters'); }