import React from "react"; import Image from "next/image"; const Content = ({ title = '', heroImgSrc, description = '' }) => { return (
{title}
{heroImgSrc &&
}
{description}
); }; export default Content;