--- import PhosphorIcon from './PhosphorIcon.astro' const ICONS_MAP: Record = { github: 'github-logo', linkedin: 'linkedin-logo', website: 'globe', mail: 'mailbox', } type Props = { image: ImageMetadata fullName: string entranceDate: number exitDate?: number description: string social?: { github?: string linkedin?: string website?: string mail?: string } } const { image, fullName, entranceDate, exitDate, description, social } = Astro.props ---
{fullName.toLowerCase()}
{fullName}
{entranceDate}—{exitDate ?? 'Presente'}
{description}
{ social && ( ) }