added alt text to almost all images

This commit is contained in:
2025-08-18 19:44:53 +02:00
parent a03d71fe77
commit a335155927
28 changed files with 325 additions and 183 deletions

View File

@@ -24,6 +24,7 @@
<BannerTitleAlt
title="My Disordered Projects"
banner="/projects/banner.webp"
bannerAlt="Closeup of the purple protagonist from Project N5"
subtitle="Things I have worked on"
/>
@@ -68,7 +69,7 @@
{/if}
{#if project.banner}
<div class="project-banner-container">
<img class="project-banner" src="{project.banner}">
<img class="project-banner" src="{project.banner}" alt="Overview banner for {project.title}">
{#if project.date}
<p class="project-date project-date-embed">{project.date}</p>
{/if}
@@ -79,7 +80,7 @@
{/if}
{/if}
{#if project.icon}
<img class="project-icon" src="{project.icon}">
<img class="project-icon" src="{project.icon}" alt="Icon for {project.title}">
{/if}
{#each project.paragraphs as paragraph}
<p>{@html paragraph}</p>