blueskychan.dev/src/components/Profile.jsx

14 lines
373 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-27 22:35:11 +07:00
<span className="text-gray-100 text-lg font-bold">blueskychan_</span>
<span className="font-extralight text-sm">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