import { useEffect } from "react"; import { gsap } from "gsap"; import { ScrollTrigger, ScrollSmoother } from "@/plugins"; import Link from "next/link"; import Image from "next/image"; import One from "../../../public/assets/imgs/about/2/1.jpg"; 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"; gsap.registerPlugin(ScrollTrigger, ScrollSmoother); const DesignStudioAbout = () => { useEffect(() => { if (typeof window !== "undefined") { let device_width = window.innerWidth; let tHero = gsap.context(() => { gsap.to(".about__img-2 img", { scale: 1.15, duration: 1, scrollTrigger: { trigger: ".about__img-2", start: "top bottom", markers: false, scrub: 1, end: "bottom center", }, }); ScrollSmoother.create({ smooth: 1.35, effects: device_width < 1025 ? false : true, smoothTouch: false, normalizeScroll: false, ignoreMobileResize: true, }); }); return () => tHero.revert(); } }, []); return ( <>

We design and develop outstanding Digital
Products and digital-first Brands.

We help brands stand out through powerful, elegant visual design. Our design philosophy is shaped by our experience growing up at our father’s bookbindery. Surrounded by the highest-quality materials and turn-of-the-century machines, we observed the art of true craftsmanship firsthand.

Explore Us{" "}
About Image

We worked with global largest brands

Brand Logo
Brand Logo
Brand Logo
Brand Logo
Brand Logo
Brand Logo
); }; export default DesignStudioAbout;