react-code-dataset
/
next.js
/examples
/cms-buttercms
/components
/landing-page-sections
/feature.js
| import Image from "next/image"; | |
| export default function Feature({ headline, description, icon }) { | |
| return ( | |
| <div className="col-lg-6 col-md-6"> | |
| <div className="single-feature"> | |
| <div className="feature-icon"> | |
| {icon && <Image src={icon} layout="fill" objectFit="cover" alt="" />} | |
| </div> | |
| <div className="feature-content"> | |
| <h4>{headline}</h4> | |
| <p>{description}</p> | |
| </div> | |
| </div> | |
| </div> | |
| ); | |
| } | |