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}
2024-11-26 12:25:33 +07:00
src="/pfp.jpg"
2024-05-06 17:02:40 +00:00
width={128}
height={128}
alt="Profile picture"
/>
2023-12-23 13:21:32 +07:00
</div>
2023-12-27 22:35:11 +07:00
<Tooltip anchorSelect="#status" content=":3" />
2023-12-23 13:21:32 +07:00
</>
)
}
export default Avatar