import { useEffect } from "react"; import { gsap } from "gsap"; import { ScrollTrigger, ScrollSmoother, ScrollToPlugin } from "@/plugins"; import A1 from "../../../public/assets/imgs/home-7/a1.jpg"; import Video from "../../../public/assets/imgs/home-7/video.jpg"; import Shape4 from "../../../public/assets/imgs/home-7/shape-4.png"; import Shape5 from "../../../public/assets/imgs/home-7/shape-5.png"; import A2 from "../../../public/assets/imgs/home-7/a2.jpg"; import A3 from "../../../public/assets/imgs/home-7/a3.jpg"; import Image from "next/image"; gsap.registerPlugin(ScrollTrigger, ScrollSmoother, ScrollToPlugin); const CreativeAgencyAbout = () => { useEffect(() => { if (typeof window !== "undefined") { let device_width = window.innerWidth; let tHero = gsap.context(() => { ScrollSmoother.create({ smooth: 1.35, effects: device_width < 1025 ? false : true, smoothTouch: false, normalizeScroll: false, ignoreMobileResize: true, }); gsap.to(".about__img-2 img", { scale: 1.15, duration: 1, scrollTrigger: { trigger: ".about__img-2", start: "top bottom", markers: false, scrub: 1, end: "bottom center", }, }); }); return () => tHero.revert(); } }, []); return ( <>
Video Image

We want to bring
business and the digital
world together

Image

We believe that we’ve managed to achieve what we set out to do. Today, we’re proud to bring together people who share our passion for change. This is how Outcrowd began. We were just a bunch of talented Ukrainians united by a common vision: creating a synergy of business and the digital world.

We were tired of stale design solutions. We felt strongly that design was more than pretty pictures: it was a powerful tool that could really transform business.

Shape Image
Image
Shape
); }; export default CreativeAgencyAbout;