blueskychan.dev/src/components/Profile.jsx

14 lines
367 B
React
Raw Normal View History

2023-12-23 13:21:32 +07:00
const Profile = () => {
return (
2024-04-16 02:00:13 +07:00
<div className="text-lg">
2023-12-23 13:21:32 +07:00
<p className="space-x-1">
2024-05-06 17:02:40 +00:00
<span className="text-lg font-bold md:text-xl">blueskychan_</span>
<span className="font-extralight text-base md:text-xl">she/her :3</span>
2023-12-23 13:21:32 +07:00
</p>
2023-12-27 22:35:11 +07:00
<div className="text-sm font-bold">Phapoom Saksri</div>
2023-12-23 13:21:32 +07:00
</div>
)
}
export default Profile