Experience.js 5.35 KB
import FadeInStagger from "@/components/FadeInStagger";
import Heading from "@/components/Heading";
import Image from "next/image";
import React from "react";
import { Col, Container, Row } from "react-bootstrap";
import { Swiper, SwiperSlide } from "swiper/react";
import "swiper/css";
import "swiper/css/navigation";
import "swiper/css/pagination";
import { Autoplay, Navigation, Pagination } from "swiper/modules";

const CollectionDatas = [
  { image: "/image/experience/01.png" },
  { image: "/image/experience/02.png" },
  { image: "/image/experience/03.png" },
  { image: "/image/experience/01.png" },
  { image: "/image/experience/02.png" },
];

const Experience = () => {
  return (
    <section className="experience_sec es-cust sec_padd ">
      <Container className="custom_container">
        {/* Make row full height and align items center */}
        <Row className="align-items-center">
          <Col md={7} className="d-flex flex-column justify-content-center">
            <Heading el="h2" heading="Experience Our New Showroom" />
            <FadeInStagger direction="left">
              {/* <h2 className="heading mb-2">About</h2> */}
              <p className="gray-text">
                Our newly revamped Akruti Luxe showroom in Lower Parel, Mumbai, is a celebration of design, craftsmanship, and modern luxury.

                <br />
               The space showcases an inspiring new display of Valcucine and Rimadesio collections  where innovation meets timeless Italian elegance.

                <br />
               Every corner has been thoughtfully curated to offer an immersive experience of refined living, allowing visitors to explore materials, finishes,

                <br />
               and details that define true sophistication. Step into our world of design excellence and
discover how Akruti Luxe transforms everyday spaces into extraordinary expressions of style.
              </p>
               
               {/* <div className="my-5"> <button className="btn4">Read More</button> </div> */}
        
            </FadeInStagger>
          </Col>
<Col md={5} className="position-relative">
  <Swiper
    slidesPerView={1}
    loop={true}
    navigation={{
      nextEl: ".cust-swiper-button-next",
      prevEl: ".cust-swiper-button-prev",
    }}
    pagination={{ clickable: true }}
    modules={[Navigation, Pagination]}
    className="collectionSwiper"
  >
    {CollectionDatas.map((item, index) => (
      <SwiperSlide key={index}>
        <div className="collection-card">
          <Image
            src={item.image}
            alt="Experience image"
            width={600}
            height={500}
            className="img-fluid rounded-lg hover-zooms"
          />
        </div>
      </SwiperSlide>
    ))}
  </Swiper>

  {/* Navigation Buttons */}
  <div className="position-absolute swiperbtn1 d-lg-flex d-none justify-content-between align-items-center w-100">
                <button className="cust-swiper-button-prev">
                  <svg
                    xmlns="http://www.w3.org/2000/svg"
                    width="48"
                    height="48"
                    viewBox="0 0 48 48"
                    fill="none"
                  >
                    <rect
                      y="48"
                      width="48"
                      height="48"
                      rx="24"
                      transform="rotate(-90 0 48)"
                      fill="white"
                      fill-opacity="0.25"
                    />
                    <rect
                      x="0.5"
                      y="47.5"
                      width="47"
                      height="47"
                      rx="23.5"
                      transform="rotate(-90 0.5 47.5)"
                      stroke="black"
                      stroke-opacity="0.2"
                    />
                    <path
                      d="M20.6667 31L22.4375 29.1406L18.7917 25.3125H34V22.6875H18.7917L22.4375 18.8594L20.6667 17L14 24L20.6667 31Z"
                      fill="black"
                    />
                  </svg>
                </button>
                <button className="cust-swiper-button-next">
                  <svg
                    xmlns="http://www.w3.org/2000/svg"
                    width="48"
                    height="48"
                    viewBox="0 0 48 48"
                    fill="none"
                  >
                    <rect
                      width="48"
                      height="48"
                      rx="24"
                      transform="matrix(0 -1 -1 0 48 48)"
                      fill="white"
                      fill-opacity="0.25"
                    />
                    <rect
                      x="-0.5"
                      y="-0.5"
                      width="47"
                      height="47"
                      rx="23.5"
                      transform="matrix(0 -1 -1 0 47 47)"
                      stroke="black"
                      stroke-opacity="0.2"
                    />
                    <path
                      d="M27.3333 31L25.5625 29.1406L29.2083 25.3125H14V22.6875H29.2083L25.5625 18.8594L27.3333 17L34 24L27.3333 31Z"
                      fill="black"
                    />
                  </svg>
                </button>
              </div>
</Col>
         
        </Row>
       
      </Container>
    </section>
  );
};

export default Experience;