"use client"; import AnimatedText from "@/components/common/AnimatedText"; import { Autoplay, Navigation } from "swiper/modules"; import { Swiper, SwiperSlide } from "swiper/react"; import Link from "next/link"; import Image from "next/image"; import ModalVideo from "react-modal-video"; import { useState } from "react"; export default function Hero() { const [isOpen, setOpen] = useState(false); const swiperOptions = { spaceBetween: 30, speed: 2000, loop: true, autoplay: { delay: 2000, disableOnInteraction: false, }, navigation: { prevEl: ".array-prevs", nextEl: ".array-nexts", }, modules: [Autoplay, Navigation], breakpoints: { 1199: { slidesPerView: 2, }, 991: { slidesPerView: 2, }, 767: { slidesPerView: 2, }, 575: { slidesPerView: 1, }, 0: { slidesPerView: 1, }, }, }; const images = [ "/assets/img/hero/01.jpg", "/assets/img/hero/02.jpg", "/assets/img/hero/01.jpg", "/assets/img/hero/02.jpg", // Add more image paths as needed ]; return ( <>
img
img
img



Proactively pontificate client-centered relationships visavis process centric leadership skills. Credibly.

{images.map((src, index) => (
{`Hero
))}
setOpen(false)} />{" "} ); }