fix(pitch-deck): CapTable slide — remove Gehälter/Gewinnverwendung, fix BAFA + 1M amounts
Some checks failed
Build pitch-deck / build-push-deploy (push) Failing after 23s
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) Failing after 10s
CI / test-python-voice (push) Failing after 10s
CI / test-bqas (push) Failing after 11s
Some checks failed
Build pitch-deck / build-push-deploy (push) Failing after 23s
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) Failing after 10s
CI / test-python-voice (push) Failing after 10s
CI / test-bqas (push) Failing after 11s
Removed: - Gründergehälter card (entire section) - Gewinnverwendung card (entire section) - Instrument line from Pre-Seed Runde Updated: - Series A → "Series A Ausblick (Optional)" - Investment: 975.000 → 1.000.000 EUR - Post-Money: 4.975.000 → 5.000.000 EUR - BAFA INVEST: 20% → 15% Erwerbszuschuss + 25% Exit-Zuschuss Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -31,7 +31,7 @@ export default function CapTableSlide({ lang }: CapTableSlideProps) {
|
||||
<GradientText>{de ? 'Investition & Cap Table' : 'Investment & Cap Table'}</GradientText>
|
||||
</h2>
|
||||
<p className="text-sm text-white/50 max-w-2xl mx-auto">
|
||||
{de ? '4 Mio. EUR Pre-Money Bewertung · 975.000 EUR Pre-Seed · Gründung Jul/Aug 2026' : 'EUR 4M pre-money valuation · EUR 975,000 pre-seed · Founding Jul/Aug 2026'}
|
||||
{de ? '4 Mio. EUR Pre-Money Bewertung · 1.000.000 EUR Pre-Seed · Gründung Aug 2026' : 'EUR 4M pre-money valuation · EUR 1,000,000 pre-seed · Founding Aug 2026'}
|
||||
</p>
|
||||
</FadeInView>
|
||||
|
||||
@@ -80,10 +80,9 @@ export default function CapTableSlide({ lang }: CapTableSlideProps) {
|
||||
<div className="space-y-3">
|
||||
{[
|
||||
{ label: 'Pre-Money Bewertung', value: '4.000.000 EUR', icon: Target },
|
||||
{ label: 'Investment', value: '975.000 EUR', icon: Briefcase },
|
||||
{ label: 'Post-Money', value: '4.975.000 EUR', icon: TrendingUp },
|
||||
{ label: 'Investment', value: '1.000.000 EUR', icon: Briefcase },
|
||||
{ label: 'Post-Money', value: '5.000.000 EUR', icon: TrendingUp },
|
||||
{ label: de ? 'Investoranteil' : 'Investor Share', value: '19,6%', icon: Users },
|
||||
{ label: 'Instrument', value: de ? 'Stammkapital + Wandeldarlehen' : 'Equity + Convertible', icon: Briefcase },
|
||||
].map((item, idx) => {
|
||||
const Icon = item.icon
|
||||
return (
|
||||
@@ -101,66 +100,6 @@ export default function CapTableSlide({ lang }: CapTableSlideProps) {
|
||||
</FadeInView>
|
||||
</div>
|
||||
|
||||
{/* Gründergehälter + Gewinnverwendung */}
|
||||
<div className="grid md:grid-cols-2 gap-6 mb-6">
|
||||
<FadeInView delay={0.2}>
|
||||
<GlassCard hover={false} className="p-5">
|
||||
<h3 className="text-sm font-bold text-emerald-400 uppercase tracking-wider mb-3">
|
||||
{de ? 'Gründergehälter' : 'Founder Salaries'}
|
||||
</h3>
|
||||
<p className="text-xs text-white/50 mb-3">
|
||||
{de
|
||||
? 'Bewusst unter Markt — zeigt Investoren Skin in the Game und Kapitaldisziplin.'
|
||||
: 'Deliberately below market — shows investors skin in the game and capital discipline.'}
|
||||
</p>
|
||||
<div className="space-y-2">
|
||||
{[
|
||||
{ period: '2026 (Aug–Dez)', salary: de ? '0 EUR (unbezahlt)' : 'EUR 0 (unpaid)', note: de ? 'Gründungsphase' : 'Founding phase' },
|
||||
{ period: '2027', salary: '7.000 EUR/Mo', note: de ? 'Unter Marktniveau' : 'Below market' },
|
||||
{ period: '2028', salary: '~8.000 EUR/Mo', note: de ? 'Product-Market Fit' : 'Product-market fit' },
|
||||
{ period: '2029+', salary: '~9.100 EUR/Mo', note: de ? 'Break-Even erreicht' : 'Break-even reached' },
|
||||
].map((item, idx) => (
|
||||
<div key={idx} className="flex items-center justify-between text-xs">
|
||||
<span className="text-white/40 min-w-[100px]">{item.period}</span>
|
||||
<span className="text-white/70 font-mono">{item.salary}</span>
|
||||
<span className="text-white/30 text-[10px]">{item.note}</span>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</GlassCard>
|
||||
</FadeInView>
|
||||
|
||||
<FadeInView delay={0.25}>
|
||||
<GlassCard hover={false} className="p-5">
|
||||
<h3 className="text-sm font-bold text-purple-400 uppercase tracking-wider mb-3">
|
||||
{de ? 'Gewinnverwendung' : 'Use of Profits'}
|
||||
</h3>
|
||||
<p className="text-xs text-white/50 mb-3">
|
||||
{de
|
||||
? '100% Reinvestition in Wachstum — Standard bei schnell wachsenden SaaS-Startups.'
|
||||
: '100% reinvestment in growth — standard for fast-growing SaaS startups.'}
|
||||
</p>
|
||||
<div className="space-y-2">
|
||||
{(de ? [
|
||||
'Keine Gewinnausschüttung bis mindestens Series A',
|
||||
'Jeder Euro in Wachstum bringt 3-5x Return in 2-3 Jahren',
|
||||
'Investition in: Engineering, Vertrieb, EU-Expansion',
|
||||
'Gründer partizipieren über Equity-Wertsteigerung, nicht Gehalt',
|
||||
] : [
|
||||
'No profit distribution until at least Series A',
|
||||
'Every euro in growth returns 3-5x in 2-3 years',
|
||||
'Investment in: engineering, sales, EU expansion',
|
||||
'Founders participate through equity appreciation, not salary',
|
||||
]).map((item, idx) => (
|
||||
<p key={idx} className="text-xs text-white/60 pl-3 relative">
|
||||
<span className="absolute left-0 top-1 w-1.5 h-1.5 rounded-full bg-purple-400/60" />
|
||||
{item}
|
||||
</p>
|
||||
))}
|
||||
</div>
|
||||
</GlassCard>
|
||||
</FadeInView>
|
||||
</div>
|
||||
|
||||
{/* ESOP + INVEST + Series A */}
|
||||
<div className="grid md:grid-cols-3 gap-4 mb-6">
|
||||
@@ -184,12 +123,12 @@ export default function CapTableSlide({ lang }: CapTableSlideProps) {
|
||||
</h3>
|
||||
<p className="text-xs text-white/60 leading-relaxed mb-2">
|
||||
{de
|
||||
? 'Das BAFA-Programm "INVEST — Zuschuss für Wagniskapital" erstattet Business Angels 20% ihres Investments als nicht rückzahlbaren Zuschuss.'
|
||||
: 'The BAFA program "INVEST — Venture Capital Grant" reimburses business angels 20% of their investment as a non-repayable grant.'}
|
||||
? 'Das BAFA-Programm "INVEST — Zuschuss für Wagniskapital" erstattet Business Angels bis zu 15% ihres Investments als steuerfreien Zuschuss plus 25% Exit-Zuschuss.'
|
||||
: 'The BAFA program "INVEST — Venture Capital Grant" reimburses business angels up to 15% of their investment as a tax-free grant plus 25% exit grant.'}
|
||||
</p>
|
||||
<div className="space-y-1 text-xs">
|
||||
<div className="flex justify-between"><span className="text-white/40">{de ? 'Zuschuss' : 'Grant'}</span><span className="text-emerald-300 font-bold">20%</span></div>
|
||||
<div className="flex justify-between"><span className="text-white/40">{de ? 'Bei 975k Investment' : 'On EUR 975k'}</span><span className="text-emerald-300 font-bold">195.000 EUR</span></div>
|
||||
<div className="flex justify-between"><span className="text-white/40">{de ? 'Erwerbszuschuss' : 'Acquisition grant'}</span><span className="text-emerald-300 font-bold">15%</span></div>
|
||||
<div className="flex justify-between"><span className="text-white/40">{de ? 'Exit-Zuschuss' : 'Exit grant'}</span><span className="text-emerald-300 font-bold">25%</span></div>
|
||||
<div className="flex justify-between"><span className="text-white/40">{de ? 'Max. pro Investor/Jahr' : 'Max. per investor/yr'}</span><span className="text-white/60">500.000 EUR</span></div>
|
||||
<div className="flex justify-between"><span className="text-white/40">{de ? 'Haltefrist' : 'Holding period'}</span><span className="text-white/60">{de ? '3 Jahre' : '3 years'}</span></div>
|
||||
</div>
|
||||
@@ -199,7 +138,7 @@ export default function CapTableSlide({ lang }: CapTableSlideProps) {
|
||||
<FadeInView delay={0.4}>
|
||||
<GlassCard hover={false} className="p-4">
|
||||
<h3 className="text-xs font-bold text-blue-400 uppercase tracking-wider mb-2">
|
||||
{de ? 'Series A Ausblick (Q1/Q2 2028)' : 'Series A Outlook (Q1/Q2 2028)'}
|
||||
{de ? 'Series A Ausblick (Optional)' : 'Series A Outlook (Optional)'}
|
||||
</h3>
|
||||
<div className="space-y-1.5 text-xs">
|
||||
<div className="flex justify-between"><span className="text-white/40">{de ? 'Bewertung' : 'Valuation'}</span><span className="text-white/70 font-mono">15-25 Mio. EUR</span></div>
|
||||
|
||||
Reference in New Issue
Block a user