"use client"; import { useEffect } from "react"; import gsap from "gsap"; import { ScrollTrigger } from "gsap/dist/ScrollTrigger"; import Link from "next/link"; const CareerBanner = () => { useEffect(() => { gsap.registerPlugin(ScrollTrigger); const careerBanner = document.querySelector(".career-banner"); const cpBannerThumb = document.querySelector(".cp-banner-thumb"); if (careerBanner && cpBannerThumb) { const tl = gsap.timeline({ scrollTrigger: { trigger: ".career-banner", start: "center center", end: "+=100%", scrub: true, pin: false, }, }); tl.to(".cp-banner-thumb", { opacity: 0.1, y: "40%", duration: 2, }); tl.to( ".career-banner", { "--scale": 3, duration: 2, }, 0 ); } }, []); return (

Build Your Career with Enterprise Excellence

Join our global team of innovators, problem-solvers, and tech leaders building the future of digital solutions

{/* Job Categories with Icons */}
Engineering
Design
Business
Operations
Scroll
); }; export default CareerBanner;