Files
template-nuxtsim/_mockApis/landingpage/curoselData.ts
2025-06-20 02:59:01 +00:00

23 lines
501 B
TypeScript
Executable File

/*Product Preview Slider*/
const curoselSettings = {
snapAlign: "start",
itemsToShow: 1,
autoplay: false,
};
/*Testimonials Slider*/
const testimonialSettings = {
snapAlign: "start",
itemsToShow: 3,
autoplay: false,
};
const testimonialBreakpoints = {
300: { itemsToShow: 1 },
600: { itemsToShow: 1 },
767: { itemsToShow: 2 },
991: { itemsToShow: 3 },
1500: { itemsToShow: 3 },
1800: { itemsToShow: 3 },
};
export{curoselSettings,testimonialSettings,testimonialBreakpoints}