blueskychan.dev/src/components/Avatar.jsx

21 lines
439 B
React
Raw Normal View History

2023-12-23 13:21:32 +07:00
import Image from "next/image"
import { Tooltip } from "react-tooltip"
const Avatar = () => {
return (
<>
<div className="rounded-2xl overflow-hidden w-24" id="status">
2024-05-06 17:02:40 +00:00
<Image
priority={true}
src="/pfp.png"
2024-05-06 17:02:40 +00:00
width={128}
height={128}
alt="Profile picture"
/>
2023-12-23 13:21:32 +07:00
</div>
2025-04-23 23:16:27 +07:00
<Tooltip anchorSelect="#status" content="<3" />
2023-12-23 13:21:32 +07:00
</>
)
}
export default Avatar