import { useEffect } from "react"; import { gsap } from "gsap"; import { ScrollTrigger } from "@/plugins"; import Thumb1 from "../../../public/assets/imgs/thumb/1.png"; import Thumb2 from "../../../public/assets/imgs/thumb/2.png"; import Thumb3 from "../../../public/assets/imgs/thumb/3.png"; import Image from "next/image.js"; gsap.registerPlugin(ScrollTrigger); const StartupAgencyWorkflow = () => { useEffect(() => { if (typeof window !== "undefined") { let device_width = window.innerWidth; let tHero = gsap.context(() => { let animation_workflow_6 = gsap.utils.toArray( ".animation_workflow_6 .workflow__item-4" ); if (animation_workflow_6) { if (device_width < 1023) { animation_workflow_6.forEach((item, i) => { gsap.from(item, { scrollTrigger: { trigger: item, start: "top center+=200", markers: false, }, opacity: 0, x: -30, ease: "power2.out", duration: 2, stagger: { each: 0.4, }, }); }); } else { gsap.from(".animation_workflow_6 .workflow__item-4", { scrollTrigger: { trigger: ".animation_workflow_6", start: "top center+=200", markers: false, }, opacity: 0, x: -30, ease: "power2.out", duration: 2, stagger: { each: 0.4, }, }); } } }); return () => tHero.revert(); } }, []); return ( <>

Processing

How we work

Adjust your design through a wide range of theme options in the
development and instantly.

Work Image

Teamwork

Modern and unique design practically point of view, it risks not meeting the huge expectations

Work Image

Networking

Using year-over-year design and latest techs, we will ensure that your new website will be visible

Work Image

Exposure

Brand strategy tools are made size for marketing teams taken possession of global strategy

); }; export default StartupAgencyWorkflow;