Files
supanextail/components/UI/CardLanding.js
2021-06-26 16:52:27 +02:00

17 lines
361 B
JavaScript

/*
This card is used on the landing page
*/
import Image from "next/image";
const CardLanding = (props) => {
return (
<div className='w-80 shadow-md h-48 p-5 sm:ml-5 mb-5 font-bold bg-base-100'>
<Image src={props.image} width={props.image.width * 0.7} />
<p className='mt-3'>{props.text}</p>
</div>
);
};
export default CardLanding;