fix some home page SEO

This commit is contained in:
MathMan05 2025-04-28 13:23:16 -05:00
parent 0a4032b0f9
commit 506c2de04c
3 changed files with 5 additions and 2 deletions

View file

@ -81,6 +81,7 @@ fetch("/instances.json")
div.classList.add("flexltr", "instance");
if (instance.image) {
const img = document.createElement("img");
img.alt = I18n.home.icon(instance.name);
img.src = instance.image;
div.append(img);
}