refactor: Replace Next.js Image component with a standard img tag and apply styling via className.

This commit is contained in:
pradeepkumar
2026-02-24 03:39:26 +05:30
parent cc22d47d1e
commit ccb1045107

View File

@@ -217,11 +217,11 @@ export default function AboutPage() {
>
{feature.iconPath && (
<div className="w-[60px] h-[60px] bg-[#e58625]/10 rounded-full flex items-center justify-center mx-auto mb-4">
<Image
{/* eslint-disable-next-line @next/next/no-img-element */}
<img
src={feature.iconPath}
alt=""
width={28}
height={28}
className="w-7 h-7 object-contain"
/>
</div>
)}