chore: remove unused images, update project image paths to webp format, and enhance accessibility with aria-labels across components

This commit is contained in:
cojocaru-david
2025-08-14 03:21:50 +03:00
parent 57dc793005
commit 865b182062
37 changed files with 152 additions and 88 deletions

View File

@@ -103,12 +103,12 @@ Without dimensions, the browser can't reserve space. When the image finally load
Good:
```html
<img src="dog.jpg" width="800" height="450" loading="lazy">
<img src="dog.jpg" width="800" height="450" loading="lazy" alt="Dog">
```
Bad:
```html
<img src="dog.jpg" loading="lazy">
<img src="dog.jpg" loading="lazy" alt="Dog">
```
### **Mistake 3: Overdoing Fade-In Animations**