All checks were successful
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 33s
CI / test-python-voice (push) Successful in 33s
CI / test-bqas (push) Successful in 33s
Refocus entire pitch deck narrative on machine/plant manufacturers with in-house embedded software development. Key changes: - i18n: All DE/EN texts updated (cover, problem, solution, market, etc.) - MarketSlide: Dynamic unit formatting (Mrd/Mio/k) for SOM in millions - SolutionSlide: Code-Security pillar with ScanLine icon - HowItWorksSlide: GitBranch icon for code repo connection step - CompetitionSlide: Security features reframed for firmware/embedded - RegulatorySlide: Added CRA (Cyber Resilience Act) as 4th tab - AI chat prompt: Updated Kernbotschaften for Maschinenbau USP - DB migration: TAM 8.7B, SAM 850M, SOM 7.2M, customers 5-380 (2026-2030), 4 new differentiator features, product capabilities for code-security Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
108 lines
5.7 KiB
TypeScript
108 lines
5.7 KiB
TypeScript
'use client'
|
|
|
|
import { Language, PitchFeature, PitchCompetitor } from '@/lib/types'
|
|
import { t } from '@/lib/i18n'
|
|
import { ShieldCheck, Code2, ScanLine, FileSearch, Package, Bug } from 'lucide-react'
|
|
import GradientText from '../ui/GradientText'
|
|
import FadeInView from '../ui/FadeInView'
|
|
import FeatureMatrix from '../ui/FeatureMatrix'
|
|
import GlassCard from '../ui/GlassCard'
|
|
import BrandName from '../ui/BrandName'
|
|
|
|
interface CompetitionSlideProps {
|
|
lang: Language
|
|
features: PitchFeature[]
|
|
competitors: PitchCompetitor[]
|
|
}
|
|
|
|
const securityFeatures = {
|
|
de: [
|
|
{ icon: ShieldCheck, title: 'DevSecOps Security Suite', desc: '6 integrierte Security-Tools scannen Firmware und Software Ihrer Maschinen kontinuierlich auf Schwachstellen' },
|
|
{ icon: ScanLine, title: 'Firmware & Code Scanning', desc: 'Semgrep + Gitleaks analysieren Embedded-Code, Steuerungs-Software und CI/CD Pipelines automatisch' },
|
|
{ icon: Bug, title: 'Container & Dependency Scanning', desc: 'Trivy + Grype scannen Container-Images und Abhaengigkeiten auf CVEs — CRA-konform dokumentiert' },
|
|
{ icon: Package, title: 'SBOM-Generator (CRA/NIS2)', desc: 'CycloneDX/SPDX Software Bill of Materials — Pflicht fuer Hersteller unter dem Cyber Resilience Act' },
|
|
{ icon: FileSearch, title: 'Software-Risikoanalyse', desc: 'Automatisierte Risikoklassifizierung fuer Embedded-Software, Firmware und AI-Act-konforme Steuerungssysteme' },
|
|
{ icon: Code2, title: 'KI-Code-Assistent (1000b)', desc: 'BSI-zertifiziertes Cloud-LLM implementiert Security-Fixes, schreibt Risikoanalysen und ist fuer Mitarbeiter nutzbar' },
|
|
],
|
|
en: [
|
|
{ icon: ShieldCheck, title: 'DevSecOps Security Suite', desc: '6 integrated security tools continuously scan firmware and software of your machines for vulnerabilities' },
|
|
{ icon: ScanLine, title: 'Firmware & Code Scanning', desc: 'Semgrep + Gitleaks analyze embedded code, controller software and CI/CD pipelines automatically' },
|
|
{ icon: Bug, title: 'Container & Dependency Scanning', desc: 'Trivy + Grype scan container images and dependencies for CVEs — CRA-compliant documentation' },
|
|
{ icon: Package, title: 'SBOM Generator (CRA/NIS2)', desc: 'CycloneDX/SPDX Software Bill of Materials — mandatory for manufacturers under the Cyber Resilience Act' },
|
|
{ icon: FileSearch, title: 'Software Risk Assessment', desc: 'Automated risk classification for embedded software, firmware and AI Act compliant control systems' },
|
|
{ icon: Code2, title: 'AI Code Assistant (1000B)', desc: 'BSI-certified cloud LLM implements security fixes, writes risk assessments and is available for employee use' },
|
|
],
|
|
}
|
|
|
|
export default function CompetitionSlide({ lang, features, competitors }: CompetitionSlideProps) {
|
|
const i = t(lang)
|
|
const coreFeatures = features.filter(f => f.category !== 'security')
|
|
const secFeats = securityFeatures[lang]
|
|
|
|
return (
|
|
<div>
|
|
<FadeInView className="text-center mb-8">
|
|
<h2 className="text-4xl md:text-5xl font-bold mb-3">
|
|
<GradientText>{i.competition.title}</GradientText>
|
|
</h2>
|
|
<p className="text-lg text-white/50 max-w-2xl mx-auto">{i.competition.subtitle}</p>
|
|
</FadeInView>
|
|
|
|
{/* Feature Matrix (Core Compliance) */}
|
|
<FadeInView delay={0.3}>
|
|
<GlassCard className="mb-6 p-4 overflow-x-auto" hover={false}>
|
|
<FeatureMatrix features={coreFeatures} lang={lang} />
|
|
</GlassCard>
|
|
</FadeInView>
|
|
|
|
{/* Security & Developer Features — nur bei ComplAI */}
|
|
<FadeInView delay={0.5}>
|
|
<div className="mb-6">
|
|
<h3 className="text-sm font-semibold text-indigo-400 mb-3 flex items-center gap-2">
|
|
<ShieldCheck className="w-4 h-4" />
|
|
{lang === 'de' ? <>Integrierte Security & Developer Tools — nur bei <BrandName /></> : <>Integrated Security & Developer Tools — <BrandName /> only</>}
|
|
</h3>
|
|
<div className="grid grid-cols-2 md:grid-cols-3 gap-3">
|
|
{secFeats.map((feat, idx) => {
|
|
const Icon = feat.icon
|
|
return (
|
|
<FadeInView key={idx} delay={0.6 + idx * 0.08}>
|
|
<div className="bg-indigo-500/5 border border-indigo-500/10 rounded-xl p-3">
|
|
<div className="flex items-center gap-2 mb-1.5">
|
|
<Icon className="w-4 h-4 text-indigo-400 shrink-0" />
|
|
<span className="text-xs font-semibold text-white">{feat.title}</span>
|
|
</div>
|
|
<p className="text-[11px] text-white/40 leading-relaxed">{feat.desc}</p>
|
|
</div>
|
|
</FadeInView>
|
|
)
|
|
})}
|
|
</div>
|
|
</div>
|
|
</FadeInView>
|
|
|
|
{/* Competitor Summary */}
|
|
<div className="grid md:grid-cols-3 gap-4">
|
|
{competitors.map((c, idx) => (
|
|
<FadeInView key={c.id} delay={0.9 + idx * 0.1}>
|
|
<div className="bg-white/[0.04] border border-white/5 rounded-xl p-4">
|
|
<div className="flex items-center justify-between mb-2">
|
|
<h4 className="font-medium text-white/70">{c.name}</h4>
|
|
<span className="text-xs text-white/30">{c.customers_count.toLocaleString()} {lang === 'de' ? 'Kunden' : 'customers'}</span>
|
|
</div>
|
|
<p className="text-xs text-white/40 mb-2">{c.pricing_range}</p>
|
|
<div className="flex flex-wrap gap-1">
|
|
{(c.weaknesses || []).slice(0, 2).map((w, widx) => (
|
|
<span key={widx} className="text-xs px-2 py-0.5 rounded-full bg-red-500/10 text-red-400">
|
|
{w}
|
|
</span>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</FadeInView>
|
|
))}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|