export default defineNuxtPlugin(() => {
  const scrolled = useHeaderScrolled()
  const showToTop = useShowToTop()

  const onScroll = () => {
    scrolled.value = window.scrollY > 8
    showToTop.value = window.scrollY > 900
  }

  window.addEventListener('scroll', onScroll, { passive: true })
  onScroll()
})
