From ec2aeee9bb7fb3c5ab2620674ab21f9c3d1aeb20 Mon Sep 17 00:00:00 2001 From: "Bryant J. Reynoso" Date: Tue, 29 Oct 2024 14:49:18 -0400 Subject: [PATCH] fix(carrousel) --- src/components/sections/Testimonial.astro | 38 +++++++++++------------ 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/src/components/sections/Testimonial.astro b/src/components/sections/Testimonial.astro index 865fa2c..0c0f350 100644 --- a/src/components/sections/Testimonial.astro +++ b/src/components/sections/Testimonial.astro @@ -21,28 +21,28 @@ const { testimonial } = Astro.props;
{testimonial.map((item: TestimonialItem) => ( -
-
-
-
- {item.image.slice(0, 4).map((imgSrc) => ( -
- {item.description} +
+
+
+
+ {item.image.slice(0, 4).map((imgSrc) => ( +
+ {item.description} +
+ ))}
- ))} + +

+ {item.description} +

+
+
- -

- {item.description} -

-
-
-
))}