import { useEffect } from "react"; import { gsap } from "gsap"; import { ScrollTrigger } from "@/plugins"; import Brand1 from "../../../public/assets/imgs/brand/1.png"; import Brand2 from "../../../public/assets/imgs/brand/2.png"; import Brand3 from "../../../public/assets/imgs/brand/3.png"; import Brand4 from "../../../public/assets/imgs/brand/4.png"; import Brand5 from "../../../public/assets/imgs/brand/5.png"; import Brand6 from "../../../public/assets/imgs/brand/6.png"; import Brand7 from "../../../public/assets/imgs/brand/7.png"; import Brand8 from "../../../public/assets/imgs/brand/8.png"; import Brand9 from "../../../public/assets/imgs/brand/9.png"; import Brand10 from "../../../public/assets/imgs/brand/10.png"; import Brand11 from "../../../public/assets/imgs/brand/11.png"; import Brand12 from "../../../public/assets/imgs/brand/12.png"; import Image from "next/image"; gsap.registerPlugin(ScrollTrigger); const DigitalAgencyBrand = () => { useEffect(() => { if (typeof window !== "undefined") { let device_width = window.innerWidth; let tHero = gsap.context(() => { gsap.set(".fade_bottom", { y: 30, opacity: 0 }); if (device_width < 1023) { const fadeArray = gsap.utils.toArray(".fade_bottom"); 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", { scrollTrigger: { trigger: ".fade_bottom", start: "top center+=300", markers: false, }, y: 0, opacity: 1, ease: "power2.out", duration: 1, stagger: { each: 0.2, }, }); } }); return () => tHero.revert(); } }, []); return (
// <> //
//
// //
//
//
//

Our Clients

//

// The successful companies that rely on SyncROI to grow their businesses online //

//
//
//
//
//
// Brand Logo //
//
// Brand Logo //
//
// Brand Logo //
//
// Brand Logo //
//
// Brand Logo //
//
// Brand Logo //
//
// Brand Logo //
//
// Brand Logo //
//
// Brand Logo //
//
// Brand Logo //
//
// Brand Logo //
//
// Brand Logo //
//
//
//
//
//
// ); }; export default DigitalAgencyBrand;