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 ProjectCardSlate = ({ ProjectCardContent }: ProjectCardProps) => { return (
); }; export default ProjectCardSlate;