import { useEffect } from "react"; import { gsap } from "gsap"; import { ScrollTrigger, ScrollSmoother } from "@/plugins"; import Link from "next/link"; gsap.registerPlugin(ScrollTrigger, ScrollSmoother); const CreativeAgencyService = () => { useEffect(() => { if (typeof window !== "undefined") { let device_width = window.innerWidth; let tHero = gsap.context(() => { let animation_services_7 = gsap.utils.toArray( ".animation_service_7 .service__item-7" ); gsap.set(animation_services_7, { opacity: 0, x: -30, }); if (animation_services_7) { if (device_width < 1023) { animation_services_7.forEach((item, i) => { gsap.to(item, { scrollTrigger: { trigger: item, start: "top center+=200", markers: false, }, opacity: 1, x: -0, ease: "power2.out", duration: 2, stagger: { each: 0.4, }, }); }); } else { gsap.to(".animation_service_7 .service__item-7", { scrollTrigger: { trigger: ".animation_service_7", start: "top center+=200", markers: false, }, opacity: 1, x: 0, ease: "power2.out", duration: 2, stagger: { each: 0.4, }, }); } } }); return () => tHero.revert(); } }, []); return ( <>

Branding design

We help brands stand out through aweful, elegant visual design. Our design mainly philosophy.

  • + Logo Design
  • + Advertisement
  • + Promotion

Interactive Design{" "}

We help brands stand out through aweful, elegant visual design. Our design mainly philosophy.

  • + Logo Design
  • + Advertisement
  • + Promotion

Web & Mobile Development{" "}

We help brands stand out through aweful, elegant visual design. Our design mainly philosophy.

  • + Logo Design
  • + Advertisement
  • + Promotion

Digital Marketing{" "}

We help brands stand out through aweful, elegant visual design. Our design mainly philosophy.

  • + Logo Design
  • + Advertisement
  • + Promotion

Business Strategy

We help brands stand out through aweful, elegant visual design. Our design mainly philosophy.

  • + Logo Design
  • + Advertisement
  • + Promotion

Illustration Modelling{" "}

We help brands stand out through aweful, elegant visual design. Our design mainly philosophy.

  • + Logo Design
  • + Advertisement
  • + Promotion
); }; export default CreativeAgencyService;