Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fb4830db4f |
@@ -115,7 +115,17 @@ const FeatureCardTwentyTwo = ({
|
|||||||
buttonTextClassName={textBoxButtonTextClassName}
|
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) => (
|
{features.map((feature, index) => (
|
||||||
<article
|
<article
|
||||||
key={feature.id}
|
key={feature.id}
|
||||||
|
|||||||
Reference in New Issue
Block a user