import { motion } from "framer-motion"; interface AnimatedGradientTextProps { text: string; className?: string; } export const AnimatedGradientText = ({ text, className = "" }: AnimatedGradientTextProps) => { return ( {text} ); };