"use client"; import type { Project } from "../types"; export function ProjectCard({ project }: { project: Project }) { return (
{project.image && (
{project.name}
)}

{project.name}

{project.description}

{project.last_commit && (

Last commit: {new Date(project.last_commit).toLocaleDateString()}

)}
Visit {project.open_source && ( )}
); }