Skip to content

Commit

Permalink
fixup! feature: add author pages
Browse files Browse the repository at this point in the history
  • Loading branch information
NobbZ committed Jul 2, 2023
1 parent 643b41b commit 8049053
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/author/{author.slug}/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const getSocialLink = (
}

return (
<a href={`https://twitter.com/${data}`}>
<a href={`https://twitter.com/${data}`} key={platform}>
<Icon icon="mdi:twitter" /> {data}
</a>
);
Expand All @@ -29,7 +29,7 @@ const getSocialLink = (
}

return (
<a href={`https://github.com/${data}`}>
<a href={`https://github.com/${data}`} key={platform}>
<Icon icon="mdi:github" /> {data}
</a>
);
Expand All @@ -39,7 +39,7 @@ const getSocialLink = (
}

return (
<a href={`https://gitlab.com/${data}`}>
<a href={`https://gitlab.com/${data}`} key={platform}>
<Icon icon="mdi:gitlab" /> {data}
</a>
);
Expand All @@ -49,7 +49,7 @@ const getSocialLink = (
}

return (
<a href={data.url}>
<a href={data.url} key={platform}>
<Icon icon="mdi:web" /> {data.name}
</a>
);
Expand Down

0 comments on commit 8049053

Please sign in to comment.