feat(trophy):Added credit link.

This commit is contained in:
jaideepghosh
2020-10-02 16:37:49 +05:30
parent 21483d66e0
commit 2338a7db00
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ const Markdown = props => {
if (props.show) {
return (
<>
{`<p align="left"> <img src="${link}" alt="${props.github}" /> </p>`}
{`<p align="left"> <a href="https://github.com/ryo-ma/github-profile-trophy"><img src="${link}" alt="${props.github}" /></a> </p>`}
<br />
<br />
</>
+3 -1
View File
@@ -240,7 +240,9 @@ const MarkdownPreview = props => {
return (
<div className="text-left my-2">
{" "}
<img src={link} alt={props.github} />{" "}
<a href="https://github.com/ryo-ma/github-profile-trophy">
<img src={link} alt={props.github} />
</a>{" "}
</div>
)
}