/** * ProjectCard Component * Displays project with metadata */ import React from 'react' import Link from 'next/link' import type { Project } from '@metabuilder/interfaces/workspace' import styles from '../../scss/components/cards/project-card.module.scss' interface ProjectCardProps { project: Project [key: string]: any } /** * ProjectCard - Clickable project card with link */ export const ProjectCard = ({ project, ...rest }: ProjectCardProps) => { return (

{project.name}

{project.description || 'No description'}

{project.workflowCount || 0} workflows Updated {new Date(project.updatedAt).toLocaleDateString()}
) }