/* 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 API_URL = import.meta.env.VITE_API_BASE_URL; const LearnCard = ({ id, src, text, href }) => { return ( {/* {images.map((img) => ( <> ))} */} company-logo {text} ); }; export default LearnCard;