Bob AI: add image as a background for Featured Signature B...

This commit is contained in:
2026-02-04 17:27:30 +02:00
parent a73257bdb0
commit fb4830db4f

View File

@@ -115,7 +115,17 @@ const FeatureCardTwentyTwo = ({
buttonTextClassName={textBoxButtonTextClassName}
/>
<div className={cls("grid grid-cols-1 md:grid-cols-2 gap-8 card rounded-theme-capped p-5 md:p-8", gridClassName)}>
<div
className={cls(
"grid grid-cols-1 md:grid-cols-2 gap-8 card rounded-theme-capped p-5 md:p-8",
gridClassName,
"relative"
)}
>
<div
className="absolute inset-0 z-0"
style={{ backgroundImage: `url('/path/to/your/image.jpg')`, backgroundSize: 'cover', backgroundPosition: 'center' }}
/>
{features.map((feature, index) => (
<article
key={feature.id}