| import React from 'react'; | |
| import { Typography, Button, Empty } from 'antd'; | |
| const { Title } = Typography; | |
| const ProfilePage = () => ( | |
| <div className="space-y-6"> | |
| <Title level={2}>个人资料</Title> | |
| <div className="text-center py-12"> | |
| <Empty description="用户资料页面正在开发中" /> | |
| <Button type="primary" className="mt-4"> | |
| 编辑资料 | |
| </Button> | |
| </div> | |
| </div> | |
| ); | |
| export default ProfilePage; |