"use client" import * as React from "react" import { cn } from "@/lib/utils" export interface AnimatedLinkProps extends React.AnchorHTMLAttributes {} const AnimatedLink = React.forwardRef( ({ className, children, ...props }, ref) => { return ( {children} ) }, ) AnimatedLink.displayName = "AnimatedLink" export { AnimatedLink }