fix(ui): apply user-requested fixes for Meme, TOC, ROI Calculator, and Gantt
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 19s
Build & Deploy / 🏗️ Build (push) Failing after 1m6s
Build & Deploy / 🧪 QA (push) Failing after 2m53s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🩺 Health Check (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 1s

This commit is contained in:
2026-02-22 18:07:48 +01:00
parent 79838d7955
commit c3fa10dd53
4 changed files with 9 additions and 9 deletions

View File

@@ -5,8 +5,8 @@ import { ComponentShareButton } from '../ComponentShareButton';
import { Reveal } from '../Reveal';
export function PerformanceROICalculator({ className = '' }: { className?: string }) {
const [traffic, setTraffic] = useState(800); // Typical niche B2B traffic
const [aov, setAov] = useState(25000); // Typical B2B project value
const [traffic, setTraffic] = useState(300); // Typical niche B2B SME traffic
const [aov, setAov] = useState(5000); // Typical SME project value
const [loadTime, setLoadTime] = useState(4.5);
const [baseConv, setBaseConv] = useState(2.0); // 2% Lead-Rate as default
@@ -66,7 +66,7 @@ export function PerformanceROICalculator({ className = '' }: { className?: strin
<span className="font-mono font-bold text-slate-700">{traffic.toLocaleString('de-DE')}</span>
</div>
<input
type="range" min="100" max="5000" step="100"
type="range" min="100" max="2000" step="100"
value={traffic} onChange={(e) => setTraffic(Number(e.target.value))}
className="w-full h-1.5 bg-slate-200 rounded-lg appearance-none cursor-pointer accent-slate-900"
/>
@@ -90,7 +90,7 @@ export function PerformanceROICalculator({ className = '' }: { className?: strin
<span className="font-mono font-bold text-slate-700">{formatCurrency(aov)}</span>
</div>
<input
type="range" min="1000" max="250000" step="1000"
type="range" min="1000" max="50000" step="1000"
value={aov} onChange={(e) => setAov(Number(e.target.value))}
className="w-full h-1.5 bg-slate-200 rounded-lg appearance-none cursor-pointer accent-slate-900"
/>