Skip to content

Commit 6c0cfde

Browse files
committed
fix: changed image
1 parent b3ab1da commit 6c0cfde

2 files changed

Lines changed: 693 additions & 694 deletions

File tree

components/landing-page/about/AboutUsDifferent.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,12 @@ function AboutUsDifferent({ className = '' }: AboutUsDifferentProps) {
114114
role='list'
115115
aria-label='Key features that make Boundless different'
116116
>
117-
{features.map((feature, index) => (
117+
{features.map(feature => (
118118
<article
119119
key={feature.id}
120120
className={`flex h-full w-full flex-col items-center gap-4 rounded-[12px] border border-white/48 p-4 backdrop-blur-[7px] md:gap-6 md:p-6 ${
121-
index < 2
122-
? 'bg-[#101010A3] bg-[url("/card-bg.svg")] bg-center bg-no-repeat'
123-
: 'bg-black/85 bg-[url("/card-bg.svg")] bg-center bg-no-repeat backdrop-blur-2xl'
121+
'bg-[#101010A3] bg-[url("/card-bg.svg")] bg-center bg-no-repeat'
122+
// 'bg-black/85 bg-[url("/card-bg.svg")] bg-center bg-no-repeat backdrop-blur-2xl'
124123
} ${feature.gridClass || ''}`}
125124
role='listitem'
126125
aria-labelledby={`${feature.id}-title`}

0 commit comments

Comments
 (0)