Files
resumeformatter/frontend/components/PersonList.tsx
2025-10-14 19:51:35 +05:30

58 lines
2.4 KiB
TypeScript

import React from 'react';
import type { Person } from '../types';
import { LinkedInIcon } from './Icons';
interface PersonListProps {
people: Person[];
}
const PersonList: React.FC<PersonListProps> = ({ people }) => {
return (
<div className="overflow-hidden bg-white dark:bg-gray-800 shadow-md rounded-lg">
<div className="overflow-x-auto">
<table className="min-w-full divide-y divide-gray-200 dark:divide-gray-700">
<thead className="bg-gray-50 dark:bg-gray-700">
<tr>
<th scope="col" className="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider">
First Name
</th>
<th scope="col" className="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider">
Last Name
</th>
<th scope="col" className="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider">
LinkedIn Profile
</th>
</tr>
</thead>
<tbody className="bg-white dark:bg-gray-800 divide-y divide-gray-200 dark:divide-gray-700">
{people.map((person) => (
<tr key={person.id} className="hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors">
<td className="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900 dark:text-white">
{person.firstName}
</td>
<td className="px-6 py-4 whitespace-nowrap text-sm text-gray-900 dark:text-white">
{person.lastName}
</td>
<td className="px-6 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-300">
<a
href={person.linkedinUrl}
target="_blank"
rel="noopener noreferrer"
className="inline-flex items-center text-indigo-600 hover:text-indigo-900 dark:text-indigo-400 dark:hover:text-indigo-300 font-medium group"
>
<LinkedInIcon className="w-5 h-5 mr-2 text-gray-400 group-hover:text-indigo-500 dark:group-hover:text-indigo-400" />
View Profile
</a>
</td>
</tr>
))}
</tbody>
</table>
</div>
</div>
);
};
export default PersonList;