Skip to content

Commit

Permalink
Fix: adrianhajdin#4 Missing li tag in Socials list
Browse files Browse the repository at this point in the history
issue: adrianhajdin#4
Fixed missing li tag in social list in  Footer section
  • Loading branch information
uttamdasud committed Mar 4, 2024
1 parent 235246d commit bba2bb1
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,20 @@ const Footer = () => {

<ul className="flex gap-5 flex-wrap">
{socials.map((item) => (
<a
key={item.id}
href={item.url}
target="_blank"
className="flex items-center justify-center w-10 h-10 bg-n-7 rounded-full transition-colors hover:bg-n-6"
>
<img src={item.iconUrl} width={16} height={16} alt={item.title} />
</a>
<li key={item.id}>
<a
className="flex items-center justify-center w-10 h-10 bg-n-7 rounded-full transition-colors hover:bg-n-6"
href={item.url}
target="_blank"
>
<img
src={item.iconUrl}
width={16}
height={16}
alt={item.title}
/>
</a>
</li>
))}
</ul>
</div>
Expand Down

0 comments on commit bba2bb1

Please sign in to comment.