fix(pitch-deck): increase font sizes on slides 8, 11, 18, 25, 27
Some checks failed
Build pitch-deck / build-push-deploy (push) Has been cancelled
CI / go-lint (push) Has been cancelled
CI / python-lint (push) Has been cancelled
CI / nodejs-lint (push) Has been cancelled
CI / test-go-consent (push) Has been cancelled
CI / test-python-voice (push) Has been cancelled
CI / test-bqas (push) Has been cancelled
Some checks failed
Build pitch-deck / build-push-deploy (push) Has been cancelled
CI / go-lint (push) Has been cancelled
CI / python-lint (push) Has been cancelled
CI / nodejs-lint (push) Has been cancelled
CI / test-go-consent (push) Has been cancelled
CI / test-python-voice (push) Has been cancelled
CI / test-bqas (push) Has been cancelled
- All text-[10px] → text-xs (12px) - All text-[9px] → text-[11px] - All text-[8px] → text-[10px] - Affected: BusinessModel, Product, Savings, Strategy slides - Engineering: revert LoC to 481K (compliance SDK only, not all repos) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -78,22 +78,22 @@ export default function BusinessModelSlide({ lang }: BusinessModelSlideProps) {
|
||||
<FadeInView key={idx} delay={0.1 + idx * 0.1}>
|
||||
<GlassCard hover={false} className={`p-4 h-full ${tier.highlight ? 'border-indigo-500/30 bg-indigo-500/5' : ''}`}>
|
||||
{tier.highlight && (
|
||||
<div className="text-[9px] font-bold text-indigo-400 uppercase tracking-wider mb-2">
|
||||
<div className="text-[11px] font-bold text-indigo-400 uppercase tracking-wider mb-2">
|
||||
{de ? 'Kernmarkt' : 'Core Market'}
|
||||
</div>
|
||||
)}
|
||||
<h3 className="text-base font-bold text-white mb-0.5">{tier.name}</h3>
|
||||
<p className="text-[10px] text-white/40 mb-2">{tier.target}</p>
|
||||
<p className="text-[10px] text-white/30 mb-3">{tier.employees} {de ? 'Mitarbeiter' : 'employees'}</p>
|
||||
<p className="text-xs text-white/40 mb-2">{tier.target}</p>
|
||||
<p className="text-xs text-white/30 mb-3">{tier.employees} {de ? 'Mitarbeiter' : 'employees'}</p>
|
||||
|
||||
<div className="mb-3">
|
||||
<span className="text-xl font-black text-white">{tier.price}</span>
|
||||
<span className="text-[10px] text-white/40 ml-1">{tier.period}</span>
|
||||
<span className="text-xs text-white/40 ml-1">{tier.period}</span>
|
||||
</div>
|
||||
|
||||
<ul className="space-y-1.5">
|
||||
{tier.features.map((f, i) => (
|
||||
<li key={i} className="flex items-start gap-1.5 text-[11px] text-white/50">
|
||||
<li key={i} className="flex items-start gap-1.5 text-sm text-white/50">
|
||||
<span className="w-1 h-1 rounded-full bg-indigo-400 mt-1.5 shrink-0" />
|
||||
{f}
|
||||
</li>
|
||||
@@ -111,7 +111,7 @@ export default function BusinessModelSlide({ lang }: BusinessModelSlideProps) {
|
||||
<span className="text-[10px] text-white/30">Professional</span>
|
||||
<ArrowRight className="w-3 h-3 text-indigo-400/40" />
|
||||
<span className="text-[10px] text-white/30">Enterprise</span>
|
||||
<span className="text-[10px] text-white/20 ml-2">{de ? 'Land & Expand' : 'Land & Expand'}</span>
|
||||
<span className="text-xs text-white/20 ml-2">{de ? 'Land & Expand' : 'Land & Expand'}</span>
|
||||
</FadeInView>
|
||||
</div>
|
||||
|
||||
@@ -132,7 +132,7 @@ export default function BusinessModelSlide({ lang }: BusinessModelSlideProps) {
|
||||
</div>
|
||||
<div className="flex-1">
|
||||
<div className="flex items-baseline justify-between">
|
||||
<span className="text-[10px] text-white/40 uppercase tracking-wider">{m.label}</span>
|
||||
<span className="text-xs text-white/40 uppercase tracking-wider">{m.label}</span>
|
||||
<span className={`text-lg font-black ${m.color}`}>{m.value}</span>
|
||||
</div>
|
||||
<p className="text-[10px] text-white/30">{m.sub}</p>
|
||||
|
||||
Reference in New Issue
Block a user