feat(pitch-deck): add BAFA INVEST program info to The Ask slide
All checks were successful
Build pitch-deck / build-push-deploy (push) Successful in 1m12s
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 34s
CI / test-python-voice (push) Successful in 34s
CI / test-bqas (push) Successful in 35s

- 15% tax-free acquisition grant (corrected from 25%)
- 25% exit grant on capital gains
- Up to 40% effective support (entry + exit combined)
- Program extended until 31.12.2026
- Disclaimer to verify current terms at bafa.de

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-04-16 00:05:42 +02:00
parent 2b9788bdb0
commit 786993d8ca

View File

@@ -148,6 +148,31 @@ export default function TheAskSlide({ lang, funding }: TheAskSlideProps) {
</div>
</GlassCard>
</FadeInView>
{/* INVEST Program Hint */}
<FadeInView delay={0.6} className="mt-4">
<div className="bg-gradient-to-r from-indigo-500/10 to-emerald-500/10 border border-indigo-500/20 rounded-xl px-5 py-3">
<div className="flex items-start gap-3">
<span className="text-lg mt-0.5">🏛</span>
<div>
<p className="text-sm font-bold text-white mb-1">
{de ? 'BAFA INVEST — Zuschuss für Wagniskapital' : 'BAFA INVEST — Venture Capital Grant'}
</p>
<p className="text-xs text-white/50 leading-relaxed">
{de
? 'Investoren erhalten über das BAFA INVEST-Programm bis zu 15% steuerfreien Erwerbszuschuss auf ihr Investment (max. 50.000 EUR pro Einzelinvestment) sowie zusätzlich 25% Exit-Zuschuss auf Veräußerungsgewinne. Effektive Förderung: bis zu 40% (Entry + Exit kombiniert). Voraussetzung: natürliche Person, Mindesthaltedauer 3 Jahre.'
: 'Investors receive up to 15% tax-free acquisition grant on their investment through the BAFA INVEST program (max. EUR 50,000 per single investment) plus an additional 25% exit grant on capital gains. Effective support: up to 40% (entry + exit combined). Requirements: natural person, 3-year minimum holding period.'}
</p>
<p className="text-[11px] text-white/30 mt-1 italic">
{de
? '* Programm verlängert bis 31.12.2026. Aktuelle Konditionen auf bafa.de prüfen.'
: '* Program extended until 31.12.2026. Verify current terms at bafa.de.'}
</p>
</div>
</div>
</div>
</FadeInView>
<ProjectionFooter lang={lang} />
</div>
)