'use client' import { ChevronDoubleDownIcon } from '@heroicons/react/24/outline' import { useScroll } from '@/hooks/useScroll' export function ScrollDown() { const { isAtBottom, scrollToNext } = useScroll() if (isAtBottom) { return null } return ( ) }