import React from 'react'; import { Link } from 'react-router-dom'; import { motion } from 'framer-motion'; import { ArrowRightIcon } from '@phosphor-icons/react'; const ProjectCard = ({ project, index, isActive, onHover = () => {} }) => { return ( onHover(project)} className="relative mr-4 md:mr-12" > {/* Active Indicator Line */}
{/* Index / Year */} {String(index + 1).padStart(2, '0')} {/* Title */}

{project.title}

{/* Arrow Interaction */}
); }; export default ProjectCard;