import { ChangeDetectionStrategy, Component, inject } from '@angular/core'; import { ContentService } from '../../core/content/content.service'; import { ContentSection } from '../../shared/content-section/content-section'; import { PageHero } from '../../shared/page-hero/page-hero'; @Component({ selector: 'app-about-page', changeDetection: ChangeDetectionStrategy.OnPush, imports: [PageHero, ContentSection], templateUrl: './about.html', styleUrl: '../../shared/page-shell.scss', }) export class AboutPage { protected readonly page = inject(ContentService).page('about'); }