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