import { cn } from "@/lib/utils"; import { ReactNode } from "react"; export default function AnimatedGradientText({ children, className }: { children: ReactNode; className?: string; }) { return (
{children}
); }