import Swiper from "swiper/bundle";
import "swiper/css/bundle";
const swiperElement = document.querySelector("#tech-slider");
export const initSwiperSection = () => {
if (!swiperElement) {
return;
}
const swiper = new Swiper(".swiper", {
direction: "horizontal",
loop: true,
simulateTouch: false,
slidesPerView: 5,
spaceBetween: 20,
speed: 750,
centeredSlides: true,
autoplay: {
delay: 1500,
},
});
};