"use client"; import type { Project } from "../types"; export function ProjectCard({ project }: { project: Project }) { return (
{project.description}
Last commit: {new Date(project.last_commit).toLocaleDateString()}