diff --git a/components/sections/Banner1.js b/components/sections/Banner1.js index 4ba12fb..90f88dd 100644 --- a/components/sections/Banner1.js +++ b/components/sections/Banner1.js @@ -1,65 +1,78 @@ +'use client'; +import { Swiper, SwiperSlide } from "swiper/react"; +import SwiperCore, { Autoplay, Pagination, Navigation } from "swiper"; +import "swiper/css"; +import "swiper/css/pagination"; +import "swiper/css/navigation"; +SwiperCore.use([Autoplay, Pagination, Navigation]); export default function Banner1() { + const banners = [ + { + id: 1, + bg: "/assets/images/slider/banner-single-4-bg.png", + title: "Put your insurance lead generation on autopilot", + desc: "Sit amet consectetur volutpat luctus ultrices sagittis justo. Integer nibh nisi adipiscingrna eleifend nunc consecteture", + img: "/assets/images/slider/banner-single-4-1.jpg", + }, + { + id: 2, + bg: "/assets/images/slider/banner-single-4-bg.png", + title: "Grow your business with powerful automation", + desc: "Suspendisse potenti. Praesent vitae eros eget tellus tristique bibendum. Donec rutrum sed sem quis venenatis.", + img: "/assets/images/slider/banner-single-4-1.jpg", + }, + { + id: 3, + bg: "/assets/images/slider/banner-single-4-bg.png", + title: "Trusted by thousands of happy customers", + desc: "Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vivamus suscipit tortor eget felis porttitor volutpat.", + img: "/assets/images/slider/banner-single-4-1.jpg", + } + ]; + return ( - <> -
-
- img -
-
-
-
-
-
-
-

- Put your insurance - lead generation on - autopilot -

-
-

- Sit amet consectetur volutpat luctus ultrices sagittis justo. Integer - nibh nisi adipiscingrna eleifend nunc consecteture -

-
-
-
-
- - -
-
-
-
-
- img -
-
-
-

Excellent 12,534+ reviews

+ + {banners.map((banner) => ( + +
+
+ img +
+
+
+
+
+
+
+

{banner.title}

+
+

{banner.desc}

+
+ +
+
+
+
+ img
-

4.8 of 5

-
-
-
-
-
- img
-
-
-
-
-

INSURANCE

-
-
-
- - - ) +
+
+

#ZIPVan

+
+
+
+ + ))} + + ); }