import React from 'react'; import Image from 'next/image'; import Link from 'next/link'; import { FaGithub } from 'react-icons/fa'; interface ProjectCard { title: string; description: string; technologies: string[]; techColors: string[]; imageUrl: string; projectUrl: string; githubUrl: string; } interface ProjectCardProps { ProjectCardContent: ProjectCard[]; } const ProjectCardBlack = ({ ProjectCardContent }: ProjectCardProps) => { return (
{ProjectCardContent.map((project, index) => (
Project Thumbnail

{project.title}

{project.technologies.map((techstack, techIndex) => (
{techstack}
))}

{project.description}

))}
); }; export default ProjectCardBlack;