content: replace scaffolding with bilingual pages and case studies

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>
This commit is contained in:
2026-08-25 17:34:04 +02:00
parent 9ea2885c7b
commit d954361724
95 changed files with 4161 additions and 419 deletions

View File

@@ -0,0 +1,12 @@
import { ChangeDetectionStrategy, Component, input } from '@angular/core';
@Component({
selector: 'app-legal-review-notice',
changeDetection: ChangeDetectionStrategy.OnPush,
templateUrl: './legal-review-notice.html',
styleUrl: './legal-review-notice.scss',
})
export class LegalReviewNotice {
readonly notice = input.required<string>();
readonly todos = input<readonly string[]>([]);
}