Files
karyamanswasta 4fe4b13f39 chore(adventure-rental-app): strip down application and remove obsolete files
This commit performs a major cleanup of the `adventure-rental-app` by removing all existing components, pages, layouts, and project brief documents. The application is reduced to a minimal Vite shell.

- Deleted all authentication, chatbot, and dashboard components and pages.
- Removed outdated project brief and PRD markdown files.
- Updated Vite and `@vitejs/plugin-react` dependencies.

Additionally, the `framer-motion` dependency was added to the `bookoomoo-app`.
2025-08-10 10:27:39 +07:00

38 lines
603 B
JavaScript
Executable File

// Logos Slider Swiper
new Swiper("#clients-swiper", {
loop: true,
speed: 800,
slidesPerView: 4,
spaceBetween: 20,
autoplay: {
delay: 2000,
disableOnInteraction: false,
},
breakpoints: {
320: {
slidesPerView: 2,
},
768: {
slidesPerView: 3,
},
1024: {
slidesPerView: 4,
},
},
});
// Logos Slider Swiper
new Swiper("#testimonial-swiper", {
loop: true,
speed: 600,
autoplay: {
delay: 5000,
},
slidesPerView: "auto",
pagination: {
el: ".testimonial-swiper-pagination",
type: "bullets",
clickable: true,
},
});