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