import { useEffect, useRef, useState } from "react"; import { Navigation, Thumbs } from "swiper"; import { Swiper, SwiperSlide } from "swiper/react"; import Portfolio11 from "../../../public/assets/imgs/work/portfolio/work-01.webp"; import Portfolio12 from "../../../public/assets/imgs/work/portfolio/work-02.webp"; import Portfolio13 from "../../../public/assets/imgs/work/portfolio/work-03.webp"; import Portfolio14 from "../../../public/assets/imgs/work/portfolio/work-04.webp"; import Portfolio15 from "../../../public/assets/imgs/work/portfolio/work-05.webp"; import Portfolio16 from "../../../public/assets/imgs/work/portfolio/work-06.webp"; import Link from "next/link"; import Image from "next/image"; import "swiper/css"; import "swiper/css/navigation"; import "swiper/css/thumbs"; import animationCharCome from "@/lib/utils/animationCharCome"; const portfolioItems = [ { image: Portfolio11, title: "DoItAI.Pro", category: "MVP Development" }, { image: Portfolio12, title: "Brand Options", category: "Business Website" }, { image: Portfolio13, title: "nobilità", category: "E-Commerce Platform" }, { image: Portfolio14, title: "Bonobos", category: "Agency Website" }, { image: Portfolio15, title: "Masar Center", category: "Business Website" }, { image: Portfolio16, title: "Awamer", category: "Food Delivery Platform" } ]; const PortfolioElementV5 = () => { const [thumbsSwiper, setThumbsSwiper] = useState(null); const charAnim = useRef(); useEffect(() => { animationCharCome(charAnim.current); }, []); return (
//
//
//
//
//
//
//

// What We
Build //

//
//
//
//
//

Building bright brands, unique visual systems and digital experiences.

//
//
//
//
//
//
// // {portfolioItems.map((item, index) => ( // // //
// {item.title}= 2 ? "lazy" : "eager"} // style={{ height: "auto" }} // /> //
// //
// ))} //
//
prev
//
Next
//
//
//
// // {portfolioItems.map((item, index) => ( // //
//

{item.title}

//

{item.category}

//
//
// ))} //
//
//
//
//
); }; export default PortfolioElementV5;