"use client" import { HStack, Span } from "@chakra-ui/react" import { LuCircleArrowUp } from "react-icons/lu" import { useScrollPosition } from "../lib/use-scroll-position" export const ScrollToTop = () => { const percent = useScrollPosition() const show = percent > 0.25 const scrollToTop = () => { window.scrollTo({ top: 0, behavior: "smooth" }) } return ( ) }