+
-
+
-
+
“
{testimonial.quote}
-
“
@@ -93,6 +131,7 @@ export default function Testimonials() {
))}
+
{testimonials.map((_, index) => (
- setCurrentIndex(index)}
+ onClick={() => {
+ setCurrentIndex(index);
+ setBulletClicked(true);
+ }}
>
))}
diff --git a/src/app/globals.css b/src/app/globals.css
index ac16160..1a36b35 100644
--- a/src/app/globals.css
+++ b/src/app/globals.css
@@ -272,3 +272,13 @@ html {
opacity: 0.95;
transition: all ease-in-out 0.5s;
}
+.no-scrollbar::-webkit-scrollbar {
+ display: none;
+}
+.no-scrollbar {
+ -ms-overflow-style: none; /* IE and Edge */
+ scrollbar-width: none; /* Firefox */
+}
+.testimonial{
+ transition: all ease-in-out 0.5s;
+}
\ No newline at end of file