fix(pitch-deck): remove scenario table, cap-table, Land&Expand + KFZ deploy
Some checks failed
Build pitch-deck / build-push-deploy (push) Successful in 1m17s
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 32s
CI / test-python-voice (push) Successful in 30s
CI / test-bqas (push) Has been cancelled
Some checks failed
Build pitch-deck / build-push-deploy (push) Successful in 1m17s
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 32s
CI / test-python-voice (push) Successful in 30s
CI / test-bqas (push) Has been cancelled
- Remove Szenario-Vergleich 2030 from Assumptions slide - KFZ: Leasing 1050, Kraftstoff 450, Versicherung 300, Steuern 45 ab Jan 2028 - Fahrzeugkosten category header for accordion Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -190,39 +190,6 @@ export default function AssumptionsSlide({ lang, isWandeldarlehen }: Assumptions
|
||||
})}
|
||||
</div>
|
||||
|
||||
<FadeInView delay={0.5}>
|
||||
<GlassCard hover={false} className="p-4">
|
||||
<h3 className="text-xs font-bold text-white/40 uppercase tracking-wider mb-3">
|
||||
{de ? 'Szenario-Vergleich 2030' : 'Scenario Comparison 2030'}
|
||||
</h3>
|
||||
<table className="w-full text-xs">
|
||||
<thead>
|
||||
<tr className="border-b border-white/10">
|
||||
<th className="text-left py-2 text-white/40"></th>
|
||||
<th className="text-right py-2 text-red-400">Bear</th>
|
||||
<th className="text-right py-2 text-indigo-400 font-bold">Base</th>
|
||||
<th className="text-right py-2 text-emerald-400">Bull</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{[
|
||||
{ label: de ? 'Kunden' : 'Customers', bear: `~${bear.customers.toLocaleString('de-DE')}`, base: `~${base.customers.toLocaleString('de-DE')}`, bull: `~${bull.customers.toLocaleString('de-DE')}` },
|
||||
{ label: 'ARR', bear: fmtArr(bear.arr, de), base: fmtArr(base.arr, de), bull: fmtArr(bull.arr, de) },
|
||||
{ label: de ? 'Mitarbeiter' : 'Employees', bear: String(bear.headcount), base: String(base.headcount), bull: String(bull.headcount) },
|
||||
{ label: 'Break-Even', bear: bear.breakEvenYear, base: base.breakEvenYear, bull: bull.breakEvenYear },
|
||||
{ label: 'Cash', bear: fmtCash(bear.cash, de), base: fmtCash(base.cash, de), bull: fmtCash(bull.cash, de) },
|
||||
].map((row, idx) => (
|
||||
<tr key={idx} className="border-b border-white/[0.03]">
|
||||
<td className="py-1.5 text-white/60">{row.label}</td>
|
||||
<td className="py-1.5 text-right text-red-400/70 font-mono">{row.bear}</td>
|
||||
<td className="py-1.5 text-right text-indigo-300 font-mono font-bold">{row.base}</td>
|
||||
<td className="py-1.5 text-right text-emerald-400/70 font-mono">{row.bull}</td>
|
||||
</tr>
|
||||
))}
|
||||
</tbody>
|
||||
</table>
|
||||
</GlassCard>
|
||||
</FadeInView>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user