first commit

This commit is contained in:
2025-11-26 07:49:54 +00:00
commit d8685ccf10
468 changed files with 41346 additions and 0 deletions

No files matched your search

+23
View File
@@ -0,0 +1,23 @@
/*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}