/* This card is used on the landing page */ import Image from 'next/image'; const CardLanding = (props) => { const { image, title, text } = props; return (

{title}

{text}

); }; export default CardLanding;