mirror of
https://github.com/blueskychan-dev/blueskychan.dev.git
synced 2025-07-07 23:31:04 +00:00
20 lines
439 B
JavaScript
20 lines
439 B
JavaScript
import Image from "next/image"
|
|
import { Tooltip } from "react-tooltip"
|
|
const Avatar = () => {
|
|
return (
|
|
<>
|
|
<div className="rounded-2xl overflow-hidden w-24" id="status">
|
|
<Image
|
|
priority={true}
|
|
src="/pfp.png"
|
|
width={128}
|
|
height={128}
|
|
alt="Profile picture"
|
|
/>
|
|
</div>
|
|
<Tooltip anchorSelect="#status" content="<3" />
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default Avatar
|