import { useEffect } from "react"; import { gsap } from "gsap"; import { ScrollTrigger } from "@/plugins"; import Link from "next/link"; import service1 from "../../../public/assets/imgs/service/4/service-1.png"; import Image from "next/image"; gsap.registerPlugin(ScrollTrigger); const StartupAgencyService = () => { useEffect(() => { if (typeof window !== "undefined") { let device_width = window.innerWidth; let tHero = gsap.context(() => { gsap.set(".fade_bottom_2", { y: 30, opacity: 0 }); if (device_width < 1023) { const fadeArray = gsap.utils.toArray(".fade_bottom_2"); fadeArray.forEach((item, i) => { let fadeTl = gsap.timeline({ scrollTrigger: { trigger: item, start: "top center+=200", }, }); fadeTl.to(item, { y: 0, opacity: 1, ease: "power2.out", duration: 1.5, }); }); } else { gsap.to(".fade_bottom_2", { scrollTrigger: { trigger: ".fade_bottom_2", start: "top center+=300", markers: false, }, y: 0, opacity: 1, ease: "power2.out", duration: 1, stagger: { each: 0.2, }, }); } }); return () => tHero.revert(); } }, []); return ( <>

Services

Our full
creative services
for you

We are constantly rethinking the future by creating the next generation of products,{" "} brands and services from a hybrid perspective.

View All Service
Service
01

Brand Strategy

02

Development

03

UI/UX Design

04

Digital marketing

); }; export default StartupAgencyService;