({
image,
title,
description,
})
| 72 | } |
| 73 | |
| 74 | const FeatureGridElement: React.FC<IFeatureGridElement> = ({ |
| 75 | image, |
| 76 | title, |
| 77 | description, |
| 78 | }) => { |
| 79 | return ( |
| 80 | <div className="rounded-[30px] bg-white bg-opacity-[0.08] p-8"> |
| 81 | <div> |
| 82 | <Image |
| 83 | className="mb-4 h-auto w-[60px]" |
| 84 | src={image} |
| 85 | alt={title} |
| 86 | width={100} |
| 87 | height={100} |
| 88 | /> |
| 89 | </div> |
| 90 | <h3 className="font-poppins mb-4 text-base font-semibold text-homeBlue"> |
| 91 | {title} |
| 92 | </h3> |
| 93 | <p className="tex-twhite font-poppins mb-4 text-sm font-light leading-[175%]"> |
| 94 | {description} |
| 95 | </p> |
| 96 | </div> |
| 97 | ) |
| 98 | } |
| 99 | |
| 100 | export default KeyFeatures |
nothing calls this directly
no outgoing calls
no test coverage detected