feat(marketing): Saving-Section + Landingpages + Pipeline Lessons-Learned [split-required]
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-consent (push) Successful in 35s
CI / test-python-voice (push) Successful in 33s
CI / test-bqas (push) Successful in 35s

Marketing-Website
- Neue SavingsSection auf Homepage: "Compliance entdeckt sechsstellige
  Einsparungen". Pitch-Position der Cookie-Audit-Cost-Optimization-Story
  fuer DAX-Konzern-Sales (BMW-Case-Style: 90 Vendors -> 25 nach
  Konsolidierung, EUR 500k-3M / Jahr).
- /savings-scan: Kostenloser 5-Min-Saving-Scan-Form (URL + E-Mail).
  Form-Submit ist Placeholder, soll an Compliance-Backend gehaengt werden.
- /savings-methodik: 4-Stufen-Erklaerung der Cookie-Tier-Inferenz +
  ehrliche Caveats (Listpreise != Vertragspreise, Media-Spend nicht
  enthalten) + Datenquellen.
- Content-de + Content-en in content.ts beide um savings-Block ergaenzt
  und Section-Numerierung angepasst (03=Savings, 04=Deterministic).
- LOC-Split: savings-Inhalte (DE+EN, ~100 LOC) in content.savings.ts
  ausgelagert damit content.ts unter 500-LOC-Hard-Cap bleibt.

Control-Pipeline
- LESSONS-LEARNED-mc-check-types.md fuer die parallele CRA-MC-Generation.
  Erklaert die TEXT/PROCESS/REVIEW-Klassifikation die im Compliance-Repo
  retrofitted wurde. Verhindert dass CRA-MCs denselben Defekt bekommen.
  Mapping-Heuristik fuer verification_method -> check_type, plus
  Backfill-Workflow fuer ~62 ambiguous Eintraege.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-05-18 18:38:30 +02:00
parent 9783657da3
commit 911697bab4
7 changed files with 735 additions and 2 deletions
+6 -2
View File
@@ -1,3 +1,5 @@
import { savingsDE, savingsEN } from './content.savings'
type Lang = 'de' | 'en'
type TerminalType = 'input' | 'output' | 'signal'
type Status = 'neutral' | 'success' | 'warning'
@@ -64,8 +66,9 @@ const de = {
{ label: 'Status', value: 'Aktionsplan erstellt', status: 'success' as Status },
],
},
savings: savingsDE,
deterministic: {
tag: '03 / VERTRAUENSWÜRDIG DURCH DESIGN',
tag: '04 / VERTRAUENSWÜRDIG DURCH DESIGN',
title: 'Keine Halluzinationen.',
titleHighlight: 'Konstruktionsbedingt.',
subtitle: 'Jede Compliance-Entscheidung ist auf eine konkrete Rechtsquelle rückführbar.',
@@ -296,8 +299,9 @@ const en = {
{ label: 'Status', value: 'Action plan created', status: 'success' as Status },
],
},
savings: savingsEN,
deterministic: {
tag: '03 / TRUSTWORTHY BY DESIGN',
tag: '04 / TRUSTWORTHY BY DESIGN',
title: 'No hallucinations.',
titleHighlight: 'By design.',
subtitle: 'Every compliance decision is traceable to a concrete legal source.',