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}