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-hardware-network-page', changeDetection: ChangeDetectionStrategy.OnPush, imports: [PagePlaceholder], templateUrl: './hardware-network.html', }) export class ServicesHardwareNetworkPage { protected readonly page = inject(ContentService).page('servicesHardwareNetwork'); }