Files
supanextail/components/UI/CardLanding.js
2021-07-25 16:28:38 +02:00

26 lines
638 B
JavaScript

/*
This card is used on the landing page
*/
import Image from "next/image";
const CardLanding = (props) => {
return (
<div className='w-80 h-48 p-5 sm:ml-5 mb-5 bg-base-100 flex'>
<div>
<div className='rounded-full w-12 h-12 border flex bg-neutral-content'>
<div className='m-auto flex'>
<Image src={props.image} width={24} height={24} />
</div>
</div>
</div>
<div className='ml-8'>
<p className='font-semibold font-title text-lg'>{props.title}</p>
<p className='mt-3'>{props.text}</p>
</div>
</div>
);
};
export default CardLanding;