import { useEffect } from "react"; import { gsap } from "gsap"; import { ScrollTrigger } from "@/plugins"; import Image from "next/image"; import Shape3 from "../../../public/assets/imgs/shape/3.png"; gsap.registerPlugin(ScrollTrigger); const DesignStudioAward = () => { useEffect(() => { if (typeof window !== "undefined") { let tHero = gsap.context(() => { let award_timeline = gsap.timeline({ scrollTrigger: { trigger: ".award__text", start: "top center+=150", }, }); gsap.set(".award__text", { opacity: 0, y: -500, }); award_timeline.to(".award__text", { opacity: 1, y: 0, duration: 2, ease: "bounce", }); gsap.set(".award__text-2", { opacity: 0, y: -500 }); award_timeline.to( ".award__text-2", { opacity: 1, y: 0, duration: 2, ease: "bounce", }, "-=1.5" ); award_timeline.to( ".award__text", { x: -100, duration: 2, }, "-=1" ); award_timeline.to( ".award__text-2", { x: -100, duration: 2, }, "-=1" ); award_timeline.to( ".award__text", { x: 0, duration: 2, }, "-=1" ); award_timeline.to( ".award__text-2", { x: 0, duration: 2, }, "-=1" ); }); return () => tHero.revert(); } }, []); return ( <>

We’re nominated as Agency of the Year amongst best Digital Agencies Worldwide.

award

award

Shape Image

We’re passionate about doing the best digital innovation we can and pushing new technology to its limits. And we achieve results we’re proud of beyond the realm.

Dribbble

Nominee

2021

Behance

Winner

2020

Template UI

Nominee

2018

Awwwards

Winner

2016

Themeforest

Winner

2012

); }; export default DesignStudioAward;