'use client' import { motion } from 'framer-motion' import { ReactNode } from 'react' interface GradientTextProps { children: ReactNode className?: string delay?: number } export default function GradientText({ children, className = '', delay = 0 }: GradientTextProps) { return ( {children} ) }