import { GoArrowRight } from "react-icons/go"; type props = { projectVideoPath : String; projectName : String; projectType : String; projectDate : String; roles : String[]; projectDescription : String; projectPageLink : String; isTheLast? : boolean; }; export const ProjectCard = ({ projectVideoPath, projectName, projectType, projectDate, roles, projectDescription, projectPageLink, isTheLast = false }: props) => { return (
( {roles.map((role, index) => ( role + (index < roles.length - 1 ? ", " : "") ))} )
READ