import Link from 'next/link'; import React from 'react'; interface AnimatedLinkProps { href: string; children: React.ReactNode; className?: string; } const AnimatedLink = ({ href, children, className = '' }: AnimatedLinkProps) => { return ( {children} ); }; export default AnimatedLink;