interface AnimatedWaveProps {
text: string;
className?: string;
}
export function AnimatedWave({ text, className = "" }: AnimatedWaveProps) {
const characters = text.split("");
return (
<>
{characters.map((char, index) => (
{char === " " ? "\u00A0" : char}
))}
>
);
}