"use client"; import { Autoplay, Pagination } from "swiper/modules"; import { Swiper, SwiperSlide } from "swiper/react"; import Link from "next/link"; import "swiper/css"; import "swiper/css/pagination"; export default function Hero() { const swiperOptions = { slidesPerView: 1, loop: true, speed: 1000, freeMode: true, autoplay: { delay: 4000, disableOnInteraction: false, }, pagination: { el: "bullets", clickable: true, }, modules: [Autoplay, Pagination], }; const slides = [ { id: 1, image: "/assets/img/cta-bg.jpg", title: "Smart Coconut", subtitle: "Solutions", text: "Efficient machines for deshelling to drying coconut.", buttonText: "Get A Quote", buttonLink: "/about", }, { id: 2, image: "/assets/img/cta-bg.jpg", title: "Future-Ready", subtitle: "Engineering", text: "Automation and precision for coconut processing plants.", buttonText: "Discover Our Innovations", buttonLink: "/about", }, { id: 3, image: "/assets/img/cta-bg.jpg", title: "Global Processing", subtitle: "Impact", text: "Trusted coconut machinery in 20+ countries worldwide.", buttonText: "Explore Global Projects", buttonLink: "/about", }, ]; return ( {slides.map((slide) => (

{slide.title} {slide.subtitle}

{slide.text}

{slide.buttonText}
))}
); }