diff --git a/components/sections/home2/Banner.js b/components/sections/home2/Banner.js index c7e9c27..4d45627 100644 --- a/components/sections/home2/Banner.js +++ b/components/sections/home2/Banner.js @@ -1,188 +1,138 @@ '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"; +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: 5000, + delay: 7000, disableOnInteraction: false, }, loop: true, + + // Navigation navigation: { nextEl: '.h1n', prevEl: '.h1p', }, + + // Pagination 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 - -
+ + +
+
+ {/*
*/} +
+
+ + 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 +
- +
+
+ {/* Repeat the above structure for each slide-item as needed */} + +
+ {/*
*/} +
+
+ + 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 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 - -
+ {/* Repeat the above structure for each slide-item as needed */} + +
+
+
+ + 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 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 - -
+ +
+ {/*
*/} +
+
+ + 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 +
- +
- {/* 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 - -
-
-
-
-
); }; +