"use client"; import React from 'react'; import { cn } from "../utils/cn"; import { ComponentShareButton } from './ComponentShareButton'; import { Reveal } from './Reveal'; const data = [ { time: 1, conversion: 100, label: "Ideal" }, { time: 2, conversion: 93, label: "Gut" }, { time: 3, conversion: 82, label: "Okay" }, { time: 4, conversion: 65, label: "Kritisch" }, { time: 5, conversion: 45, label: "Schlecht" }, { time: 6, conversion: 30, label: "Verlust" }, { time: 7, conversion: 20, label: "Verlust" }, { time: 8, conversion: 12, label: "Verlust" }, ]; export function PerformanceChart() { const shareId = "performance-curve-v1"; return (
{/* Ambient Glow matching the homepage feel */}
{/* Subtle top shine */}
{/* Header */}

Conversion Curve

MODEL_ALPHA_V3
{/* Technical Chart Area */}
{/* Critical Line */}
Kritische Schwelle > 2.5s
{data.map((d) => { const isCritical = d.time > 2.5; return (
{/* Tooltip */}
{d.conversion}% CVR
{/* Value Line */}
{/* Glow for high values */} {!isCritical && d.conversion > 80 && (
)}
{/* X-Axis */}
{d.time}s
); })}
); }