export const DEFAULT_GREETING = 'Sehr geehrter Herr'
export const DEFAULT_MESSAGE =
'wir freuen uns sehr, Ihnen exklusiven Zugang zum interaktiven Investor Pitch Deck unserer geplanten Unternehmung BreakPilot zu ermöglichen.
BreakPilot adressiert eine zentrale Herausforderung moderner Softwareentwicklung: die kontinuierliche Einhaltung regulatorischer Anforderungen bei gleichzeitig hoher Entwicklungsgeschwindigkeit.
Unsere geplante Lösung verbindet Code Security, automatisierte Compliance und regulatorische Intelligenz in einer durchgängigen Plattform. Ziel ist es, Unternehmen nicht nur Abweichungen aufzuzeigen, sondern konkret zu steuern, wie Systeme maximal regelkonform und gleichzeitig optimal genutzt werden können — insbesondere im Kontext von KI-Systemen und dem EU AI Act.
Das Pitch Deck gibt Ihnen einen strukturierten Einblick in Problemraum, Lösungsarchitektur sowie unsere geplante Finanzierungsstrategie.'
export const DEFAULT_CLOSING =
'Gerne stehen wir Ihnen für einen persönlichen Austausch oder eine vertiefende Diskussion jederzeit zur Verfügung.\n\nMit freundlichen Grüßen,\nBenjamin Bönisch & Sharang Parnerkar\nGründer — BreakPilot'
export const DEFAULT_GREETING_EN = 'Dear Sir or Madam'
export const DEFAULT_MESSAGE_EN =
'we are delighted to grant you exclusive access to the interactive investor pitch deck of our planned venture BreakPilot.
BreakPilot addresses a core challenge facing modern software development: maintaining continuous regulatory compliance while sustaining high development velocity.
Our planned solution combines code security, automated compliance, and regulatory intelligence in an end-to-end platform. The goal is not only to surface deviations, but to actively guide organizations on how to operate their systems in maximum regulatory conformance and optimal performance — particularly in the context of AI systems and the EU AI Act.
The pitch deck provides a structured overview of the problem space, solution architecture, and our planned financing strategy.'
export const DEFAULT_CLOSING_EN =
'We would be delighted to connect for a personal exchange or a deeper discussion at any time.\n\nBest regards,\nBenjamin Bönisch & Sharang Parnerkar\nFounders — BreakPilot'
export function getDefaultGreeting(name: string | null, lang: 'de' | 'en' = 'de'): string {
if (lang === 'en') return name ? `Dear ${name}` : DEFAULT_GREETING_EN
return name ? `Sehr geehrter Herr ${name}` : DEFAULT_GREETING
}
export function getDefaults(lang: 'de' | 'en') {
return lang === 'en'
? { message: DEFAULT_MESSAGE_EN, closing: DEFAULT_CLOSING_EN }
: { message: DEFAULT_MESSAGE, closing: DEFAULT_CLOSING }
}