feat(marketing-website): add BreakPilot marketing website with CMP integration

Multi-page marketing website positioned as "Deterministic Regulatory Engineering Platform":
- 7 pages: Home, Plattform, CE-Prozess, Product Compliance, Architektur, Team, Preise
- Platform Bridge animation (adapted from pitch-deck USP slide)
- Cookie-Banner with consent-service integration (breakpilot-marketing site)
- DE/EN language toggle + Dark/Light theme
- Docker service on port 3014

[guardrail-change] PlatformBridgeSection.tsx added to loc-exceptions (816 LOC, SVG animation)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-05-10 22:41:00 +02:00
parent 937eca6b77
commit d13f4511cb
68 changed files with 11493 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
import Link from 'next/link'
export default function ImpressumPage() {
return (
<div className="min-h-screen bg-enterprise-dark text-white">
<div className="max-w-3xl mx-auto px-4 py-24">
<Link href="/" className="text-sm text-white/40 hover:text-white/60 transition-colors mb-8 inline-block">
&larr; Zurueck zur Startseite
</Link>
<h1 className="text-4xl font-bold mb-8">Impressum</h1>
<div className="space-y-6 text-white/60 text-sm">
<div>
<h2 className="text-lg font-semibold text-white mb-2">Angaben gemaess Paragraph 5 TMG</h2>
<p>BreakPilot GmbH (i.Gr.)</p>
<p>[Adresse wird nach Gruendung ergaenzt]</p>
</div>
<div>
<h2 className="text-lg font-semibold text-white mb-2">Kontakt</h2>
<p>E-Mail: info@breakpilot.ai</p>
</div>
<div>
<h2 className="text-lg font-semibold text-white mb-2">Verantwortlich fuer den Inhalt nach Paragraph 18 Abs. 2 MStV</h2>
<p>[Wird nach Gruendung ergaenzt]</p>
</div>
<div>
<h2 className="text-lg font-semibold text-white mb-2">EU-Streitschlichtung</h2>
<p>
Die Europaeische Kommission stellt eine Plattform zur Online-Streitbeilegung (OS) bereit.
Unsere E-Mail-Adresse finden Sie oben im Impressum.
</p>
</div>
</div>
</div>
</div>
)
}