'use client' import React from 'react'; import Link from "next/link" import { Autoplay, Navigation, Pagination } from "swiper/modules" import { Swiper, SwiperSlide } from "swiper/react" const swiperOptions = { modules: [Autoplay, Pagination, Navigation], slidesPerView: 1, spaceBetween: 0, autoplay: { delay: 7000, disableOnInteraction: false, }, loop: true, // Navigation navigation: { nextEl: '.h1n', prevEl: '.h1p', }, // Pagination pagination: { el: '.swiper-pagination', clickable: true, }, } export default function Banner() { return (
The Art of Healthcare Starts Right Now

We offer complete Healthcare services.

It is not only the medicine that cures and recovers your health earlier, it is the Healthcare team who loves the art of treatment with love.

Explore Our Service
{/* Repeat the above structure for each slide-item as needed */}
The Art of Healthcare Starts Right Now

We offer complete Healthcare services.

It is not only the medicine that cures and recovers your health earlier, it is the Healthcare team who loves the art of treatment with love.

Explore Our Service
{/* Repeat the above structure for each slide-item as needed */}
The Art of Healthcare Starts Right Now

We offer complete Healthcare services.

It is not only the medicine that cures and recovers your health earlier, it is the Healthcare team who loves the art of treatment with love.

Explore Our Service
); };