/* This card is used on the landing page */ import Image from 'next/image'; type CardLandingProps = { image: string; title: string; text: string; }; const CardLanding = ({ image, title, text }: CardLandingProps): JSX.Element => { return (
{`${title}

{title}

{text}

); }; export default CardLanding;