Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/components/PremiumFeaturePreview.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ const PremiumFeaturePreview = ({
<Button
onClick={onUpgrade}
size="lg"
className="w-full sm:w-auto bg-neutral-900 text-white hover:bg-neutral-800 font-semibold shadow-lg hover:shadow-xl transition-all duration-200 px-6 py-3 text-base"
className="w-full sm:w-auto bg-neutral-900 dark:bg-neutral-900 text-white hover:bg-neutral-800 dark:hover:bg-neutral-800 font-semibold shadow-lg hover:shadow-xl transition-all duration-200 px-6 py-3 text-base"
>
Upgrade to Premium
<ArrowRight className="h-4 w-4 ml-2" />
Expand Down
24 changes: 2 additions & 22 deletions frontend/src/components/ui/circular-testimonials.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,35 +159,15 @@ export const CircularTestimonials = ({
<>
<button
onClick={handlePrev}
className="absolute left-4 top-1/2 -translate-y-1/2 p-3 rounded-full transition-all duration-200 hover:scale-110 focus:outline-none focus:ring-2 focus:ring-offset-2 z-20"
style={{
backgroundColor: colors.arrowBackground,
color: colors.arrowForeground,
}}
onMouseEnter={(e) => {
e.target.style.backgroundColor = colors.arrowHoverBackground;
}}
onMouseLeave={(e) => {
e.target.style.backgroundColor = colors.arrowBackground;
}}
className="absolute left-4 top-1/2 -translate-y-1/2 p-2 transition-all duration-200 hover:scale-110 focus:outline-none focus:ring-2 focus:ring-offset-2 z-20 text-black dark:text-white"
aria-label="Previous testimonial"
>
<ChevronLeft className="w-6 h-6" />
</button>

<button
onClick={handleNext}
className="absolute right-4 top-1/2 -translate-y-1/2 p-3 rounded-full transition-all duration-200 hover:scale-110 focus:outline-none focus:ring-2 focus:ring-offset-2 z-20"
style={{
backgroundColor: colors.arrowBackground,
color: colors.arrowForeground,
}}
onMouseEnter={(e) => {
e.target.style.backgroundColor = colors.arrowHoverBackground;
}}
onMouseLeave={(e) => {
e.target.style.backgroundColor = colors.arrowBackground;
}}
className="absolute right-4 top-1/2 -translate-y-1/2 p-2 transition-all duration-200 hover:scale-110 focus:outline-none focus:ring-2 focus:ring-offset-2 z-20 text-black dark:text-white"
aria-label="Next testimonial"
>
<ChevronRight className="w-6 h-6" />
Expand Down
Loading