import { cn } from '@/lib/utils'; import { motion } from 'framer-motion'; interface AnimatedTextProps { text: string; className?: string; characterClassName?: string; initialY?: number; exitY?: number; duration: number; characterDelay?: number; } const AnimatedText = ({ text, className = '', characterClassName = '', initialY = -100, exitY = 100, duration, characterDelay = 0, }: AnimatedTextProps) => { const characters = text.split(''); return (