Spaces:
Sleeping
Sleeping
File size: 290 Bytes
89b8989 |
1 2 3 4 5 6 7 8 9 10 11 |
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>
);
}
|