import { useEffect } from "react"; import { gsap } from "gsap"; import { ScrollSmoother } from "@/plugins"; import Link from "next/link.js"; import About31 from "../../../public/assets/imgs/about/3/1.jpg"; import Image from "next/image.js"; gsap.registerPlugin(ScrollSmoother); const DigitalMarketingAbout = () => { useEffect(() => { if (typeof window !== "undefined") { let device_width = window.innerWidth; let tHero = gsap.context(() => { ScrollSmoother.create({ smooth: 1.35, effects: device_width < 1025 ? false : true, smoothTouch: false, normalizeScroll: false, ignoreMobileResize: true, }); }); return () => tHero.revert(); } }, []); return ( <>
About Thumbnail

Who We Are

We are leading digital marketing agency.

We’re a team of strategic mdigital marketing working globally with largest brands, We believe that progress only happens when you refused to play things safe. We combine ideas and behaviors, and insights with design, technological data to produce brand experiences that customers love our services.

Explore Us{" "}
); }; export default DigitalMarketingAbout;