Ship the final German and English copy, compose every route from shared page primitives, and cover claims, parity and contact briefing in tests. Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
509 B
TypeScript
15 lines
509 B
TypeScript
import { ChangeDetectionStrategy, Component, inject } from '@angular/core';
|
|
import { ContentService } from '../../core/content/content.service';
|
|
import { PageHero } from '../../shared/page-hero/page-hero';
|
|
|
|
@Component({
|
|
selector: 'app-not-found-page',
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
imports: [PageHero],
|
|
templateUrl: './not-found.html',
|
|
styleUrl: '../../shared/page-shell.scss',
|
|
})
|
|
export class NotFoundPage {
|
|
protected readonly page = inject(ContentService).page('notFound');
|
|
}
|