mirror of https://github.com/sgoudham/website.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
353 B
TypeScript
16 lines
353 B
TypeScript
import Image from "next/image";
|
|
|
|
export const ProfilePicture = ({}) => {
|
|
return (
|
|
<Image
|
|
src="/profile-picture.png"
|
|
width={64}
|
|
height={64}
|
|
alt="Goudham smiling at the camera"
|
|
className="motion-safe:hover:animate-spin w-12 h-12 lg:w-14 lg:h-14 xl:w-16 xl:h-16"
|
|
quality={100}
|
|
priority={true}
|
|
/>
|
|
);
|
|
};
|