import React from 'react'; import Image from 'next/image'; import Link from 'next/link'; import { FaGithub } from 'react-icons/fa'; interface ProjectCardContent { title: string; description: string; technologies: Array; techColors: Array; imageUrl: string; projectUrl: string; githubUrl: string; } interface ProjectCardProps { ProjectCardContent: Array; } const ProjectCardGlass: React.FC = ({ ProjectCardContent }) => { return (
{ProjectCardContent.map((project, index) => (
{/* Background Image */}
Project Background
{/* Content Area */}
{/* Header Section */}
Project Thumbnail
{/* Footer Section */}
{/* Footer Content */}

{project.title}

{/* Technologies */}
{project.technologies.map((techstack, index) => (
{techstack}
))}
{/* Description */}

{project.description}

))}
); }; export default ProjectCardGlass;