/* eslint-disable react/prop-types */ /* eslint-disable no-unused-vars */ import { Box, Container, Text, Image, Button } from "@chakra-ui/react"; import { Link } from "react-router-dom"; const LearnCard = ({ id, src, alt, text, href }) => { return ( {/* {images.map((img) => ( <> ))} */} {alt} {text} ); }; export default LearnCard;