// Animated placeholder — shown while generating. Matches ace-step-jam fake-waveform. export default function PulseBars({ count = 60 }) { return (
{Array.from({ length: count }).map((_, i) => (
))}
); }