Problem
The social icons in the banner sidebar (index.html lines 66–71) are bare <i> elements with no <a> wrapper:
<i class="fa-regular fa-envelope"></i>
<i class="fa-brands fa-linkedin"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-whatsapp"></i>
They are purely decorative — clicking them does nothing. The actual links exist in the Contact section at the bottom of the page.
Fix
Wrap each icon in an <a> tag pointing to the same destinations as the Contact section (email, LinkedIn, Instagram, WhatsApp).
Problem
The social icons in the banner sidebar (
index.htmllines 66–71) are bare<i>elements with no<a>wrapper:They are purely decorative — clicking them does nothing. The actual links exist in the Contact section at the bottom of the page.
Fix
Wrap each icon in an
<a>tag pointing to the same destinations as the Contact section (email, LinkedIn, Instagram, WhatsApp).