import { cn } from "@/lib/utils";
import Link from "next/link";
type HoverTextProps = {
children: React.ReactNode;
href: string;
className?: string;
};
export default function HoverLink({
children,
href,
className = "",
}: HoverTextProps) {
return (
{children}
);
}