import animationCharCome from "@/lib/utils/animationCharCome"; import { useEffect, useRef } from "react"; const CareerHero = () => { const charAnim = useRef(); useEffect(() => { animationCharCome(charAnim.current); }, []); return ( <>

Join our team & let’s work together

); }; export default CareerHero;