Merge version_15_1781419601769 into main #16

Merged
bender merged 1 commits from version_15_1781419601769 into main 2026-06-14 06:50:00 +00:00

View File

@@ -309,6 +309,36 @@ const TestimonialsInline = () => {
</div>
</div>
</ScrollReveal>
<ScrollReveal variant="fade-blur" delay={0.4}>
<div className="relative w-full overflow-hidden flex group mt-5">
<div className="flex animate-marquee group-hover:[animation-play-state:paused]">
{[...testimonials, ...testimonials].map((testimonial, index) => (
<div key={`fourth-${index}`} className="flex flex-col justify-between gap-4 xl:gap-5 2xl:gap-6 shrink-0 w-72 md:w-80 mr-5 p-6 xl:p-7 2xl:p-8 rounded card">
<p className="text-lg leading-snug line-clamp-3">{testimonial.quote}</p>
<div className="flex flex-col gap-4">
<div className="flex items-center gap-3">
<ImageOrVideo
imageSrc={testimonial.imageSrc}
videoSrc={testimonial.videoSrc}
className="size-10 md:size-11 2xl:size-12 rounded-full object-cover"
/>
<div className="flex flex-col min-w-0">
<div className="flex items-center gap-1">
<span className="text-base text-foreground font-semibold leading-snug truncate">{testimonial.name}</span>
<BadgeCheck className="size-4 text-blue-500 shrink-0" />
</div>
<span className="text-base text-foreground/75 leading-snug truncate">{testimonial.role}</span>
</div>
</div>
<Button text="Contact" variant="secondary" className="w-full py-2 text-sm" />
</div>
</div>
))}
</div>
</div>
</ScrollReveal>
</div>
</section>
);