Skip to content

Commit

Permalink
fix: blank website (#275)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhairyathedev authored Jun 11, 2024
1 parent 1ee5d96 commit 18a5009
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions components/new-resume.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -261,9 +261,9 @@ export function NewResume() {
<p>{profile?.bio}</p>
</div>
<div className="grid grid-cols-2 gap-4">
<div className="flex items-center gap-2">
<IconWorld className="h-5 w-5 text-gray-500 dark:text-gray-400" />
{profile?.blog && (
{profile?.blog && (
<div className="flex items-center gap-2">
<IconWorld className="h-5 w-5 text-gray-500 dark:text-gray-400" />
<Link
className="text-gray-500 hover:text-gray-900 dark:text-gray-400 dark:hover:text-gray-50 truncate"
href={
Expand All @@ -279,8 +279,8 @@ export function NewResume() {
.replace(/^https?:\/\//, "")
.replace(/\/$/, "")}
</Link>
)}
</div>
</div>
)}
<div className="flex items-center gap-2">
<IconBrandGithub className="h-5 w-5 text-gray-500 dark:text-gray-400" />
<Link
Expand Down

0 comments on commit 18a5009

Please sign in to comment.