MCPcopy Create free account
hub / github.com/ShaanCoding/makeread.me / FeatureGridElement

Function FeatureGridElement

frontend/components/Home/KeyFeatures.tsx:74–98  ·  view source on GitHub ↗
({
  image,
  title,
  description,
})

Source from the content-addressed store, hash-verified

72}
73
74const 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
100export default KeyFeatures

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected