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:
15
src/app/shared/page-hero/page-hero.ts
Normal file
15
src/app/shared/page-hero/page-hero.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { ChangeDetectionStrategy, Component, input } from '@angular/core';
|
||||
import { type CopyBlock, type CtaCopy } from '../../core/content/content.contracts';
|
||||
import { CtaRow } from '../cta-row/cta-row';
|
||||
|
||||
@Component({
|
||||
selector: 'app-page-hero',
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
imports: [CtaRow],
|
||||
templateUrl: './page-hero.html',
|
||||
styleUrl: './page-hero.scss',
|
||||
})
|
||||
export class PageHero {
|
||||
readonly hero = input.required<CopyBlock>();
|
||||
readonly ctas = input<readonly CtaCopy[]>([]);
|
||||
}
|
||||
Reference in New Issue
Block a user