import React from 'react'; import { Tags } from '../../../types/Tags'; import { Badge } from '../../Badge'; import { Link } from '../../Link/Link'; export interface PeopleCardProps { firstName: string; lastName: string; jobTitle?: string; email: string; phoneNumber?: string; tags?: Tags; profileImage?: any; link?: string; alt?: string; noImage?: boolean; } const styles = { profile: 'mx-auto h-48 w-48 rounded-full border-4 border-white object-cover group-hover:shadow-md group-hover:duration-300 group-hover:ease-in @sm:md:h-60 @sm:md:w-60', }; export const PeopleCard = ({ firstName, lastName, email, phoneNumber, tags, jobTitle, profileImage, link = '', alt, noImage = false, }: PeopleCardProps) => { const initials = `${firstName.split('')[0]}${lastName.split('')[0]}`; return (
{jobTitle}
)}