'use client' import Image from "next/image"; import React, { useEffect, useState } from "react"; export default function ScrollToTop() { const [isVisible, setIsVisible] = useState(false); // Top: 0 takes us all the way back to the top of the page // Behavior: smooth keeps it smooth! const scrollToTop = () => { if (typeof window !== "undefined") { window.scrollTo({ top: 0, behavior: "smooth", }); } }; useEffect(() => { // Button is displayed after scrolling for 500 pixels const toggleVisibility = () => { if (window.pageYOffset > 500) { setIsVisible(true); } else { setIsVisible(false); } }; window.addEventListener("scroll", toggleVisibility); return () => window.removeEventListener("scroll", toggleVisibility); }, []); return ( <> {isVisible && (