1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-27 13:49:10 +02:00

docs: add link titles

This commit is contained in:
Thomas Heartman 2024-01-31 10:58:47 +09:00
parent 857ab82ced
commit e53ad4b5a7
No known key found for this signature in database
GPG Key ID: BD1F880DAED1EE78

View File

@ -8,7 +8,11 @@ const LinkBox = ({ level, header, description, link }) => {
<h3>{header}</h3>
</div>
<p>{description}</p>
<a className='unleash-action-button' href={link}>
<a
className='unleash-action-button'
href={link}
title={`Course: ${header}`}
>
Start learning
</a>
</article>