import { useEffect } from "react"; import { gsap } from "gsap"; import { ScrollTrigger, ScrollSmoother } from "@/plugins"; import Link from "next/link"; import Image from "next/image"; import About11 from "../../../public/assets/imgs/about/1/1.jpg"; import About12 from "../../../public/assets/imgs/about/1/2.png"; gsap.registerPlugin(ScrollTrigger, ScrollSmoother); const DigitalAgencyAbout = () => { 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 ( <>

Your business, our responsibility

About Image
About Image Right

Here to make sure your business shines by helping you build awesome brand identity, websites, and mobile apps that stand out. As your creative team, we are here to make your vision a reality.

Just a ring away from fast, Fun, and Flexible Solutions.

More About Us{" "}
); }; export default DigitalAgencyAbout;