import {BriefcaseIcon} from '@/components/icons/BriefcaseIcon' import {ArrowDownIcon} from '@/components/icons/ArrowDownIcon' import {Button} from './Button' import {Cta} from './Cta' type Work = { company: string title: string start: { label: string dateTime: string } end: { label: string dateTime: string } } export function Resume() { const work: Work[] = [ { company: 'Aer Lingus', title: 'Software engineer', start: { label: '2022', dateTime: '2022' }, end: { label: 'present', dateTime: new Date().getFullYear().toString(), } }, { company: 'Apple', title: 'At home advisor', start: { label: '2014', dateTime: '2014' }, end: { label: '2018', dateTime: '2018' }, } ] return (
    {work.map((role, roleIndex) => (
  1. Company
    {role.company}
    Role
    {role.title}
    Date
  2. ))}
) }