Merge version_2_1777375116708 into main #1
@@ -69,10 +69,10 @@ const TestimonialMetricsCards = ({
|
||||
<ScrollReveal variant="slide-up">
|
||||
<GridOrCarousel carouselThreshold={4}>
|
||||
{testimonials.map((testimonial) => (
|
||||
<div key={testimonial.name} className="relative aspect-3/4 rounded overflow-hidden">
|
||||
<div key={testimonial.name} className={cls("relative aspect-3/4 rounded overflow-hidden", testimonial.name === "Alice Wong" && "bg-green-600")}>
|
||||
<ImageOrVideo imageSrc={testimonial.imageSrc} videoSrc={testimonial.videoSrc} />
|
||||
|
||||
<div className="absolute inset-x-5 bottom-5 flex flex-col gap-2 p-3 xl:p-4 2xl:p-5 card rounded backdrop-blur-sm">
|
||||
<div className={cls("absolute inset-x-5 bottom-5 flex flex-col gap-2 p-3 xl:p-4 2xl:p-5 rounded backdrop-blur-sm", testimonial.name === "Alice Wong" ? "bg-green-600 text-white" : "card")}>
|
||||
<div className="flex gap-1 mb-1">
|
||||
{Array.from({ length: 5 }).map((_, index) => (
|
||||
<Star
|
||||
@@ -114,4 +114,4 @@ const TestimonialMetricsCards = ({
|
||||
);
|
||||
};
|
||||
|
||||
export default TestimonialMetricsCards;
|
||||
export default TestimonialMetricsCards;
|
||||
Reference in New Issue
Block a user