From 79b79b4e1984ccd0d42937d71653456496d3ea4d Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Wed, 4 Feb 2026 19:13:30 +0200 Subject: [PATCH] Bob AI: add background image for Simple, Transparent Prici... --- src/components/sections/pricing/PricingCardOne.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/sections/pricing/PricingCardOne.tsx b/src/components/sections/pricing/PricingCardOne.tsx index e10ed4c..623a9de 100644 --- a/src/components/sections/pricing/PricingCardOne.tsx +++ b/src/components/sections/pricing/PricingCardOne.tsx @@ -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}