1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-30 13:41:44 +02:00

add link titles to read more link

This commit is contained in:
Matthias Kretschmann 2019-06-10 03:04:46 +02:00
parent 9e3e6ddb48
commit 8e84e0ef73
Signed by: m
GPG Key ID: 606EEEF3C479A91F

View File

@ -21,7 +21,7 @@ const Repository = ({ repo }) => {
{name === 'portfolio' || name === 'blog'
? null
: homepage && (
<a href={homepage}>
<a href={homepage} title={`Learn more about ${name}`}>
<LinkIcon title="website" /> Learn more
</a>
)}