2 Commits

2 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@
--foreground: #e0e0e0;; --foreground: #e0e0e0;;
--primary-cta: #ffcc00;; --primary-cta: #ffcc00;;
--secondary-cta: #33334d;; --secondary-cta: #33334d;;
--accent: #ff6600;; --accent: #ff0000;;
--background-accent: #4d4d66;; */ --background-accent: #4d4d66;; */
--background: #1a1a2e;; --background: #1a1a2e;;
@@ -15,7 +15,7 @@
--foreground: #e0e0e0;; --foreground: #e0e0e0;;
--primary-cta: #ffcc00;; --primary-cta: #ffcc00;;
--secondary-cta: #33334d;; --secondary-cta: #33334d;;
--accent: #ff6600;; --accent: #ff0000;;
--background-accent: #4d4d66;; --background-accent: #4d4d66;;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */

View File

@@ -116,10 +116,10 @@ const TestimonialCard = memo(({
)} )}
<div className="relative"> <div className="relative">
<Heart className="absolute top-0 right-0 h-5 w-auto text-red-500" strokeWidth={1.5} />
<p className={cls("relative z-1 text-lg leading-[1.2]", shouldUseLightText ? "text-background" : "text-foreground", testimonialClassName)}> <p className={cls("relative z-1 text-lg leading-[1.2]", shouldUseLightText ? "text-background" : "text-foreground", testimonialClassName)}>
{testimonial.testimonial} {testimonial.testimonial}
</p> </p>
<Heart className="absolute top-0 right-0 h-5 w-auto text-red-500" strokeWidth={1.5} />
</div> </div>
</div> </div>