/** * 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.description || 'No description'}