'use client' import React, { useState } from 'react'; import Link from "next/link"; import { Autoplay, Navigation, Pagination } from "swiper/modules"; import { Swiper, SwiperSlide } from "swiper/react"; import { motion } from "framer-motion"; import "swiper/css"; import "swiper/css/navigation"; import "swiper/css/pagination"; const swiperOptions = { modules: [Autoplay, Pagination, Navigation], slidesPerView: 1, spaceBetween: 0, autoplay: { delay: 5000, disableOnInteraction: false, }, loop: true, navigation: { nextEl: '.h1n', prevEl: '.h1p', }, pagination: { el: '.swiper-pagination', clickable: true, }, }; // Animation variants for full slide const variants = { topToBottom: { hidden: { y: -300, opacity: 0 }, visible: { y: 0, opacity: 1, transition: { duration: 1, ease: "easeOut" } }, }, bottomToTop: { hidden: { y: 300, opacity: 0 }, visible: { y: 0, opacity: 1, transition: { duration: 1, ease: "easeOut" } }, }, leftToRight: { hidden: { x: -400, opacity: 0 }, visible: { x: 0, opacity: 1, transition: { duration: 1, ease: "easeOut" } }, }, rightToLeft: { hidden: { x: 400, opacity: 0 }, visible: { x: 0, opacity: 1, transition: { duration: 1, ease: "easeOut" } }, }, }; export default function Banner() { const [activeIndex, setActiveIndex] = useState(0); return (
{ setActiveIndex(swiper.realIndex || 0); }} onSlideChange={(swiper) => { setActiveIndex(swiper.realIndex || 0); }} > {/* Slide 1 - Top to Bottom */}
The Journey to Better Health Begins here

Your Path to Recovery Starts Today

Expert Physiotherapy in Mississauga for You.

Our skilled team provides physiotherapy in Mississauga to help you regain mobility and live pain-free. Compassionate care designed around your needs.

Book Your Appointment
{/* Slide 2 - Bottom to Top */}
Compassionate Care, Delivered with Expertise

Healing Touch, Fresh Inner Strength

Expert Hand Massage Techniques for Relief

Experience targeted hand massage therapy to ease tension and promote healing, delivered by experienced therapists focused on your comfort and well-being.

Schedule a Massage
{/* Slide 3 - Left to Right */}
Your Path to Complete Wellness Starts Here

Local Physio Experts Near You

Physiotherapy Etobicoke & Rehab Care.

Offering comprehensive physiotherapy and rehabilitation services in Etobicoke to support your wellness journey and help restore your strength efficiently.

Explore Our Service
{/* Slide 4 - Right to Left */}
Healing Hands, Caring Hearts in Action

Wellness by theWaterfront

Waterfront Physio and Rehab Services.

Find peace and true healing with our specialized waterfront physio and rehab programs carefully designed for lasting wellness and a better quality of life.

Visit Our Location
); };