1 Commits

Author SHA1 Message Date
79b79b4e19 Bob AI: add background image for Simple, Transparent Prici... 2026-02-04 19:13:30 +02:00

View File

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