import { useEffect } from "react"; import { gsap } from "gsap"; import { ScrollTrigger } from "@/plugins"; import Link from "next/link"; import Service21 from "../../../public/assets/imgs/service/2/1.png"; import Service22 from "../../../public/assets/imgs/service/2/2.png"; import Service23 from "../../../public/assets/imgs/service/2/3.png"; import Image from "next/image"; gsap.registerPlugin(ScrollTrigger); const DesignStudioService = () => { useEffect(() => { if (typeof window !== "undefined") { let device_width = window.innerWidth; let tHero = gsap.context(() => { let animation__services2 = gsap.utils.toArray( ".animation__service-2 .service__item-2" ); gsap.set(animation__services2, { opacity: 0, x: -30, }); if (animation__services2) { if (device_width < 1023) { animation__services2.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-2 .service__item-2", { scrollTrigger: { trigger: ".animation__service-2", start: "top center+=200", markers: false, }, opacity: 1, x: 0, ease: "power2.out", duration: 2, stagger: { each: 0.4, }, }); } } }); return () => tHero.revert(); } }, []); return ( <>

We are passionate to create connected brands and services, and campaigns to enable stable and successful relationships between businesses and customers.

We grow your brands through bold service we’re providing

Service Icon

Branding
Design

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

  • + Logo Design
  • + Advertisement
  • + Promotion
Service Icon

Digital Product
Design

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

  • + Logo Design
  • + Advertisement
  • + Promotion
Service Icon

Architectural
Design

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

  • + Logo Design
  • + Advertisement
  • + Promotion
View
all services
); }; export default DesignStudioService;