Spaces:
Sleeping
Sleeping
import React from 'react'; | |
export default function Profile() { | |
return ( | |
<div className="bg-white p-6 rounded-lg shadow"> | |
<h2 className="text-2xl font-semibold text-gray-800 mb-6">個人資料</h2> | |
<p>這裡可以顯示和編輯您的個人資訊。</p> | |
</div> | |
); | |
} | |