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:
@@ -0,0 +1,67 @@
|
||||
import Link from 'next/link'
|
||||
|
||||
export default function DatenschutzPage() {
|
||||
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">
|
||||
← Zurueck zur Startseite
|
||||
</Link>
|
||||
|
||||
<h1 className="text-4xl font-bold mb-8">Datenschutzerklaerung</h1>
|
||||
|
||||
<div className="space-y-6 text-white/60 text-sm">
|
||||
<div>
|
||||
<h2 className="text-lg font-semibold text-white mb-2">1. Verantwortlicher</h2>
|
||||
<p>BreakPilot GmbH (i.Gr.)</p>
|
||||
<p>[Adresse wird nach Gruendung ergaenzt]</p>
|
||||
<p>E-Mail: datenschutz@breakpilot.ai</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2 className="text-lg font-semibold text-white mb-2">2. Hosting</h2>
|
||||
<p>
|
||||
Diese Website wird auf Servern in Deutschland gehostet.
|
||||
Es werden keine personenbezogenen Daten an Drittlaender uebermittelt.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2 className="text-lg font-semibold text-white mb-2">3. Keine Cookies, kein Tracking</h2>
|
||||
<p>
|
||||
Diese Website verwendet keine Cookies, kein Tracking und keine Analyse-Tools.
|
||||
Es werden keine personenbezogenen Daten erhoben oder gespeichert.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2 className="text-lg font-semibold text-white mb-2">4. Server-Logfiles</h2>
|
||||
<p>
|
||||
Der Hosting-Provider erhebt technisch notwendige Logfiles (IP-Adresse, Browsertyp, Zeitstempel).
|
||||
Rechtsgrundlage: Art. 6 Abs. 1 lit. f DSGVO (berechtigtes Interesse an der Sicherheit).
|
||||
Logfiles werden nach 7 Tagen automatisch geloescht.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2 className="text-lg font-semibold text-white mb-2">5. Externe Schriften</h2>
|
||||
<p>
|
||||
Diese Website laedt Schriftarten von Google Fonts. Dabei wird Ihre IP-Adresse an Google LLC uebermittelt.
|
||||
Rechtsgrundlage: Art. 6 Abs. 1 lit. f DSGVO.
|
||||
Weitere Informationen: https://policies.google.com/privacy
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2 className="text-lg font-semibold text-white mb-2">6. Ihre Rechte</h2>
|
||||
<p>
|
||||
Sie haben das Recht auf Auskunft (Art. 15 DSGVO), Berichtigung (Art. 16), Loeschung (Art. 17),
|
||||
Einschraenkung (Art. 18), Datenuebertragbarkeit (Art. 20) und Widerspruch (Art. 21).
|
||||
Beschwerderecht bei der zustaendigen Aufsichtsbehoerde.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user