import { useEffect } from "react"; import { gsap } from "gsap"; import { ScrollTrigger } from "@/plugins"; import { Accordion } from "react-bootstrap"; import Link from "next/link.js"; import imgsBg41 from "../../../public/assets/imgs/bg/4/1.png"; import imgsBg42 from "../../../public/assets/imgs/bg/4/2.png"; import Image from "next/image"; gsap.registerPlugin(ScrollTrigger); const StartupAgencyFaq = () => { useEffect(() => { if (typeof window !== "undefined") { let device_width = window.innerWidth; let tHero = gsap.context(() => { gsap.set(".fade_bottom_3", { y: 30, opacity: 0 }); if (device_width < 1023) { const fadeArray = gsap.utils.toArray(".fade_bottom_3"); 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_3", { scrollTrigger: { trigger: ".fade_bottom_3", start: "top center+=300", markers: false, }, y: 0, opacity: 1, ease: "power2.out", duration: 1, stagger: { each: 0.2, }, }); } }); return () => tHero.revert(); } }, []); return ( <>

Expertise

With more than 16+ years of experience, our team has become a leader in digital innovations.

Grow brands through bold, strategic creative

Know More
Design should enrich our day

Using year-over-year design approaches and latest techs, we will ensure that your new website will be{" "} accessible, and treads lightly.

Bring their individual experience and creative

{ "This is the second item's accordion body. It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes" }

Human centred design to challenges

Our design services starts and ends with a best-in-class experience strategy that builds brands. Through a process of iteration and prototyping design interfaces that bring joy to people

Design should enrich our day

Our design services starts and ends with a best-in-class experience strategy that builds brands. Through a process of iteration and prototyping design interfaces that bring joy to people

Shape Shape
); }; export default StartupAgencyFaq;