"use client"; import { useInView } from "react-intersection-observer"; import { Icon } from "../general/Icon"; export const ToTop = () => { const scrollToTop = () => { window.scrollTo({ top: 0, behavior: "smooth", }); }; return ; };