import React from 'react'; import Image from 'next/image'; import userImage from '../../../public/icons/user.svg'; const Avatar = () => { return ( <> <Image src={userImage} alt="User Icon" placeholder="blur" fill={true} /> </> ); }; export default Avatar;