import React from 'react'; import { Link } from 'react-router-dom'; import { ArrowUpRightIcon } from '@phosphor-icons/react'; import { motion } from 'framer-motion'; import GenerativeArt from './GenerativeArt'; const ProjectTile = ({ project }) => { return ( {/* Image Container */}
{/* Overlay Tag */}
{project.slug.split('-')[0]}
{/* Hover Button */}
{/* Content */}

{project.title}

{' '} {project.shortDescription}

{/* Tech Stack */}
{project.technologies && project.technologies.slice(0, 3).map((tech) => ( {tech} ))}
); }; export default ProjectTile;