"use client"; import HeroSlider from "@/components/HeroSlider"; import { useRef } from "react"; import ContactFormSection from "../ContactFormSection"; export default function HomeTopSection() { const formRef = useRef(null); function scrollToForm() { formRef.current?.scrollIntoView?.({ behavior: "smooth" }); } return ( <>
); }