"use client"; import Link from "next/link"; import { Autoplay, Navigation, Pagination } from "swiper/modules"; import { Swiper, SwiperSlide } from "swiper/react"; import { clients } from "../../datas/clients"; const swiperOptions = { modules: [Autoplay, Pagination, Navigation], spaceBetween: 30, loop: true, autoplay: { delay: 6000, }, // Navigation arrows navigation: { nextEl: ".project-button-next", prevEl: ".project-button-prev", }, }; export default function Project3() { return ( <>
COMPANIES{" "} WE'VE WORKED WITH

Some of Our Most Recent Clients

{clients.map((q) => (

{q.name}

{q.description}

View Our Portfolio
))}
); }