"use client"; import { serviceItems2 } from "@/data/services"; import { Autoplay, Navigation, Pagination } from "swiper/modules"; import { Swiper, SwiperSlide } from "swiper/react"; import Link from "next/link"; import Image from "next/image"; import AnimatedText from "@/components/common/AnimatedText"; export default function Services() { const swiperOptions = { spaceBetween: 30, speed: 2000, loop: true, autoplay: { delay: 2000, disableOnInteraction: false, }, modules: [Autoplay, Navigation, Pagination], pagination: { el: ".service-dot", }, navigation: { prevEl: ".snbp3", nextEl: ".snbn3", }, breakpoints: { 1399: { slidesPerView: 4, }, 1199: { slidesPerView: 3, }, 991: { slidesPerView: 2, }, 767: { slidesPerView: 2, }, 575: { slidesPerView: 1, }, 0: { slidesPerView: 1, }, }, }; return (
img
quality Services


{serviceItems2.map((item) => (
Service
Bar Shape
Icon

{item.title}

{item.description}

Explore More
Items Shape
))}
); }