import { useEffect } from "react"; import { FreeMode } from "swiper"; import { Swiper, SwiperSlide } from "swiper/react"; import { gsap } from "gsap"; import { ScrollTrigger } from "@/plugins"; gsap.registerPlugin(ScrollTrigger); // Import Swiper styles import "swiper/css"; import "swiper/css/free-mode"; const DigitalAgencyWorkflow = () => { useEffect(() => { if (typeof window !== "undefined") { let tHero = gsap.context(() => { gsap.set(".fade_left", { x: -20, opacity: 0 }); gsap.to(".fade_left", { scrollTrigger: { trigger: ".fade_left", start: "top center+=300", }, x: 0, opacity: 1, ease: "power2.out", duration: 1, stagger: { each: 0.2, }, }); }); return () => tHero.revert(); } }, []); return (
// <> //
//
//
//
//
//
//

Workflow

//

How we work

//
//
//
// //
// //
//

step 01

//
01
//
Explore
//

Uncover your needs and business challenges

//
//
// //
//

step 02

//
02
//
Innovate
//

// Create tailored solutions for challenges and opportunities //

//
//
// //
//

step 03

//
03
//
Build
//

// Engineer scalable solutions with advanced technologies //

//
//
// //
//

step 04

//
04
//
Validate
//

// Ensure functionality, security, and a seamless user experience //

//
//
// //
//

step 05

//
05
//
Deploy
//

// Execute a smooth transition to live operations //

//
//
// //
//

step 06

//
06
//
Refine
//

// Continuously enhance based on user feedback //

//
//
//
//
//
//
//
//
// ); }; export default DigitalAgencyWorkflow;