'use client' import { Button } from '@/components/Button' import { H1, H2, H3, H4, P, PS, PXS, PXXS } from '@/components/text' import { ChevronDownIcon } from '@heroicons/react/24/outline' export function HeroJourney() { const scrollDown = () => { // Scroll to Hero4 (2nd section) - account for Hero3's 90vh height window.scrollTo({ top: window.innerHeight * 0.9, behavior: 'smooth' }) } return (