yuting111222's picture
Add Health Assistant AI project with AI food analyzer and complete backend/frontend
89b8989
raw
history blame contribute delete
290 Bytes
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>
);
}