Bob AI: add background image for Simple, Transparent Prici...

This commit is contained in:
2026-02-04 19:13:30 +02:00
parent c56446fe94
commit 79b79b4e19

View File

@@ -53,6 +53,7 @@ interface PricingCardOneProps {
textBoxButtonContainerClassName?: string;
textBoxButtonClassName?: string;
textBoxButtonTextClassName?: string;
backgroundImage?: string;
}
interface PricingCardItemProps {
@@ -142,6 +143,7 @@ const PricingCardOne = ({
textBoxButtonContainerClassName = "",
textBoxButtonClassName = "",
textBoxButtonTextClassName = "",
backgroundImage = "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1920&q=80"
}: PricingCardOneProps) => {
const theme = useTheme();
const shouldUseLightText = shouldUseInvertedText(useInvertedBackground, theme.cardStyle);
@@ -154,6 +156,7 @@ const PricingCardOne = ({
uniformGridCustomHeightClasses={uniformGridCustomHeightClasses}
animationType={animationType}
supports3DAnimation={true}
backgroundImage={backgroundImage}
title={title}
titleSegments={titleSegments}