'use client' import { ChevronDown } from 'lucide-react' export function ScrollDownArrow() { const scrollToNextSection = () => { const nextSection = document.querySelector('#next-section') // Assuming the next section has this id if (nextSection) { nextSection.scrollIntoView({ behavior: 'smooth' }) } } return ( ) }