import Link from "next/link"; import { Project } from "@/lib/types"; import Chip from "@/components/chip"; import { Eye } from "lucide-react"; const CommercialProjectCard = ({ project }: { project: Project }) => { return ( // Removed h-full to allow flexbox stretch to control height

{project.name}

{project.commercial && ( COMMERCIAL )}

{project.short_description}

{project.technologies.slice(0, 4).map((tech) => ( ))} {project.technologies.length > 4 && ( +{project.technologies.length - 4} more )}
Read more {project.visit_url && ( )}
); }; export default CommercialProjectCard;