diff --git a/apps/portal/src/components/resumes/browse/BrowseListItem.tsx b/apps/portal/src/components/resumes/browse/BrowseListItem.tsx index 3d2e6509..a9d9c438 100644 --- a/apps/portal/src/components/resumes/browse/BrowseListItem.tsx +++ b/apps/portal/src/components/resumes/browse/BrowseListItem.tsx @@ -1,5 +1,7 @@ import Link from 'next/link'; import type { UrlObject } from 'url'; +import { ChevronRightIcon } from '@heroicons/react/20/solid'; +import { ChatBubbleLeftIcon, StarIcon } from '@heroicons/react/24/outline'; type ResumeInfo = Readonly<{ createdAt: Date; @@ -19,11 +21,31 @@ type Props = Readonly<{ export default function BrowseListItem({ href, resumeInfo }: Props) { return ( - {resumeInfo.title} - {resumeInfo.role} - {resumeInfo.experience} - {resumeInfo.numComments} - {resumeInfo.numStars} +