'use client' import { useCallback } from 'react' import { Language, PitchData } from '@/lib/types' import { t, formatEur } from '@/lib/i18n' import GradientText from '../ui/GradientText' import FadeInView from '../ui/FadeInView' import GlassCard from '../ui/GlassCard' import { Download, Shield, Server, Brain, TrendingUp, FileText, Target, ScanLine, CheckCircle2, ClipboardCheck, GraduationCap, Cpu, Map, Users } from 'lucide-react' interface ExecutiveSummarySlideProps { lang: Language data: PitchData } export default function ExecutiveSummarySlide({ lang, data }: ExecutiveSummarySlideProps) { const i = t(lang) const es = i.executiveSummary const de = lang === 'de' const funding = data.funding const amount = funding?.amount_eur || 0 const amountLabel = amount >= 1_000_000 ? `${(amount / 1_000_000).toFixed(1)} Mio. EUR` : `${(amount / 1_000).toFixed(0)}k EUR` const market = data.market || [] const tam = market.find(m => m.market_segment === 'TAM') const sam = market.find(m => m.market_segment === 'SAM') const som = market.find(m => m.market_segment === 'SOM') const handleDownloadPdf = useCallback(() => { const printWindow = window.open('', '_blank') if (!printWindow) return const tamVal = tam ? formatEur(tam.value_eur, lang) : '—' const samVal = sam ? formatEur(sam.value_eur, lang) : '—' const somVal = som ? formatEur(som.value_eur, lang) : '—' const teamHtml = data.team?.map(m => `
${de ? 'BreakPilot COMPLAI ist eine DSGVO-konforme KI-Plattform, die kontinuierliches Sicherheitsscanning mit intelligenter Compliance-Automatisierung vereint. Wir helfen unseren Kunden, ihren Code abzusichern, Compliance skalierbar durchzusetzen und volle Datensouver\\u00e4nit\\u00e4t zu bewahren \\u2014 gest\\u00fctzt auf \\u00fcber 25.000 atomaren Sicherheitskontrollen f\\u00fcr einen l\\u00fcckenlosen Audit-Trail.' : 'BreakPilot COMPLAI is a GDPR-compliant AI platform that combines continuous security scanning with intelligent compliance automation. We help our customers secure their code, enforce compliance at scale and maintain full data sovereignty \\u2014 powered by over 25,000 atomic security controls for a complete audit trail.' }
Onepager
{de ? <>BreakPilot COMPLAI ist eine DSGVO-konforme KI-Plattform, die kontinuierliches Sicherheitsscanning mit intelligenter Compliance-Automatisierung vereint. Wir helfen unseren Kunden, ihren Code abzusichern, Compliance skalierbar durchzusetzen und volle Datensouveränität zu bewahren — gestützt auf über 25.000 atomaren Sicherheitskontrollen für einen lückenlosen Audit-Trail.> : <>BreakPilot COMPLAI is a GDPR-compliant AI platform that combines continuous security scanning with intelligent compliance automation. We help our customers secure their code, enforce compliance at scale and maintain full data sovereignty — powered by over 25,000 atomic security controls for a complete audit trail.> }
{de ? 'Die einzige Plattform, die kontinuierliche Code-Security, automatisierte Compliance-Dokumentation und CE-konforme Software-Risikobeurteilung in einem System vereint – vollständig betrieben auf europäischer Infrastruktur (Deutschland oder Frankreich).' : 'The only platform combining continuous code security, automated compliance documentation and CE-compliant software risk assessment in one system – fully operated on European infrastructure (Germany or France).' }
{de ? '100\u00a0% Datensouveränität ohne Abhängigkeit von US-Anbietern.' : '100% data sovereignty without dependence on US providers.'}
{de ? 'Unternehmen stehen vor einer unlösbaren Entscheidung:' : 'Companies face an impossible decision:'}
{item}
))}{de ? 'Breakpilot macht Compliance und Security kontinuierlich – nicht mehr punktuell.' : 'Breakpilot makes compliance and security continuous – no longer periodic.'}
{item}
))}{kpi.value}
{kpi.label}
{de ? 'Kontinuierlicher KI-Sicherheitsagent' : 'Continuous AI Security Agent'}
{item}
))}{de ? 'Souveräne Compliance-Infrastruktur' : 'Sovereign Compliance Infrastructure'}
{item}
))}{phase.title}
{phase.items.map((item, i) => ({item}
))}{mod.name}
{mod.desc}
{de ? 'Dieses Dokument dient ausschliesslich Informationszwecken und stellt weder ein Angebot zum Verkauf noch eine Aufforderung zum Kauf von Anteilen oder Wertpapieren dar. Die enthaltenen Informationen wurden vom Team Breakpilot (Gruenderteam, noch keine Gesellschaft gegruendet) nach bestem Wissen und Gewissen erstellt, koennen jedoch unvollstaendig sein und jederzeit ohne vorherige Ankuendigung geaendert werden. Es wird keine ausdrueckliche oder konkludente Gewaehr fuer die Richtigkeit, Vollstaendigkeit oder Aktualitaet der Inhalte uebernommen. Dieses Dokument enthaelt zukunftsgerichtete Aussagen, die auf aktuellen Annahmen und Erwartungen beruhen und mit erheblichen Risiken und Unsicherheiten verbunden sind. Die tatsaechlichen Ergebnisse koennen wesentlich von den dargestellten abweichen. Eine Investitionsentscheidung sollte ausschliesslich auf Grundlage weitergehender, rechtlich verbindlicher Unterlagen sowie unter Hinzuziehung eigener rechtlicher, steuerlicher und finanzieller Beratung getroffen werden. Soweit gesetzlich zulaessig, wird jede Haftung des Team Breakpilot sowie seiner Mitglieder fuer etwaige Schaeden, die direkt oder indirekt aus der Nutzung dieses Dokuments entstehen, ausgeschlossen. Dieses Dokument ist vertraulich und ausschliesslich fuer den vorgesehenen Empfaenger bestimmt. Eine Weitergabe, Vervielfaeltigung oder Veroeffentlichung ist ohne vorherige schriftliche Zustimmung nicht gestattet.' : 'This document is for informational purposes only and does not constitute an offer to sell or a solicitation to purchase shares or securities. The information contained herein was prepared by Team Breakpilot (founding team, no company incorporated yet) to the best of their knowledge, but may be incomplete and subject to change without prior notice. No express or implied warranty is given for the accuracy, completeness or timeliness of the content. This document contains forward-looking statements based on current assumptions and expectations that involve significant risks and uncertainties. Actual results may differ materially. Any investment decision should be based solely on further legally binding documents and with the advice of independent legal, tax and financial counsel. To the extent permitted by law, all liability of Team Breakpilot and its members for any damages arising directly or indirectly from the use of this document is excluded. This document is confidential and intended solely for the designated recipient. Distribution, reproduction or publication without prior written consent is prohibited.' }