import React from 'react'; const TeamCard = ({ image, name, position, linkedinUrl, detailUrl }) => { return (
{/* Image Section */}
{name} {detailUrl && ( )}
{/* Content Section - Flexible to fill remaining space */}

{detailUrl ? ( {name} ) : ( name )}

{position}

{/* LinkedIn Button - Always at bottom */} {linkedinUrl && (
)}
); }; export default TeamCard;