Skip to content

Commit

Permalink
explore page
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasdavis committed Nov 19, 2024
1 parent b6ce656 commit 71c62c3
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion apps/registry/app/explore/ClientResumes.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export default function ClientResumes({
alt={resume.name || 'Profile'}
className="w-16 h-16 rounded-full object-cover"
/>
<div>
<div className="flex-1">
<h3 className="text-lg font-semibold">
<a
href={`/${resume.username}`}
Expand All @@ -187,6 +187,21 @@ export default function ClientResumes({
? `${resume.location.city}, ${resume.location.countryCode}`
: 'Location not specified'}
</p>
<div className="mt-2 space-x-3 text-sm">
<a
href={`/${resume.username}`}
className="text-blue-600 hover:text-blue-800 transition-colors"
>
View Resume
</a>
<span className="text-gray-300"></span>
<a
href={`/${resume.username}/dashboard`}
className="text-blue-600 hover:text-blue-800 transition-colors"
>
Dashboard
</a>
</div>
</div>
</div>
</motion.div>
Expand Down

0 comments on commit 71c62c3

Please sign in to comment.