blueskychan.dev/src/components/Profile.jsx
2024-05-06 17:02:40 +00:00

13 lines
367 B
JavaScript

const Profile = () => {
return (
<div className="text-lg">
<p className="space-x-1">
<span className="text-lg font-bold md:text-xl">blueskychan_</span>
<span className="font-extralight text-base md:text-xl">she/her :3</span>
</p>
<div className="text-sm font-bold">Phapoom Saksri</div>
</div>
)
}
export default Profile