import Image from 'next/image'; const CardListMobile = ({ cards }) => (
{cards.map((card) => (
{card.title}
{card.title}
    {card.points.map((point, i) => (
  • {point}
  • ))}
Know More Apply Now
))}
); export default CardListMobile;