"use client"; import { useHover } from "usehooks-ts"; import { useRef } from "react"; import Image from "next/image"; export default function Page() { const ref = useRef(null); const isHover = useHover(ref); return (