Reminder to run your websites through Chrome/ium Lighthouse to find low hanging fruit, especially with performance and accessibility. So many personal sites have unlabelled buttons, images without alt, over-sized images, and [Read me] links
For example, "Read more" links are commonly seen on article excerpts. You should use screenreader-only text to expand on it:
```
<a href>
Read more
<span class="sr-only">
of {{ article.title }}
</span>
</a>
```