blueskychan.dev/src/components/Profile.jsx

18 lines
436 B
React
Raw Normal View History

2023-12-23 13:21:32 +07:00
const Profile = () => {
return (
<div className="text-gray-300 text-lg">
<p className="space-x-1">
2023-12-29 22:20:08 +07:00
<span className="text-gray-100 text-lg font-bold md:text-xl">
blueskychan_
</span>
<span className="font-extralight text-base md:text-xl">
she/they :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